Contacts:
My main life priority is to master a new profession that is in demand in modern society, a profession that would bring me not only money but also pleasure, because I believe that only a passionate person can reach great heights.
My strengths: curiosity, great interest in creativity, love to solve problems, the ability to quickly learn the material, hard work.
Ability to read and write simple code in: Python, JavaScript; basic skills in Git and GitHub.
JavaScript code example:
var isAnagram = function(test, original) {
let word1 = test.toLowerCase().split('').sort().join('');
let word2 = original.toLowerCase().split('').sort().join('');
return (word1 == word2)
};