About me -
I want to finish this course and gain experience and knowledge.
PhoneNumber: +375 (25) 66-51-571</br> GitHub: @TatianaPanasiuk</br> E-mail: ptatyana310@gmail.com</br>
Belarusian State Technological University
Specialization: information security software for mobile systems
Programming languages
1. C# | 4. JavaScript |
2. HTML | 5. Java |
3. CSS | 6. Python |
Programs
1. Adobe Photoshop | 4. Microsoft Visual Studio |
2. Adobe Illustrator | 5. Visual Studio Code |
3. Adobe PremierePro | 6. DaVinci |
Convert boolean values to strings ‘Yes’ or ‘No’. (The code was taken from a codewars task.)
function boolToWord( bool ){
let str;
if (bool == true) { return str = "Yes" ;}
else {return str = "No";}
}
boolToWord( true );
boolToWord( false );
A2(I continue to study and improve my English)