My goal is to become a senior front-end developer. My priorities: development of my hard and soft skills, implementation of interesting projects, responsible performance of work duties. Perseverance and responsibility are my strengths. I haven’t experience in IT, but I am studying front-end development and want to work in this area in the future.
HTML, CSS, JS, GIT, VSCode.
function toBinary(n) {
let count = 0;
for (let i = 0; n >= 1; i++) {
let y = n % 2;
count += y * Math.pow(10, i);
n = Math.floor(n / 2);
}
console.log(count);
return count;
}
Bachelor of Electrical Engineering
A2