I have always loved the idea of integrating my interest in English and desire to create something visible with my own hands into my job. Along with my motivation to understand the reasons behind mistakes in any particular task, this was a key reason why i chose Frontend and JavaScript developing. My perseverance and lidership skills are my key strengths. I enjoy discovering something new and improving my skills.
Task from codewars.com: Convert boolean values to strings ‘Yes’ or ‘No’.
function boolToWord( bool ){
if (bool === true) {
return "Yes";
} else {
return "No";
}
}
This CV is my first project.