my picture

Nataliya Krylova

JUNIOR FRONT END DEVELOPER


My CV

About me

I am a curiouse and motivated person, apassionated of Web Development.

My strengths are:

  • flexible by nature and can quickly adapt to changing situations, quickly find a common language with people,
  • meticulous and attentive to details,
  • persistent and diligent, capable dedicate hours and hours to resolve a task.

Education


Code example

let str = 'John Doe hs seven red pples under his bsket';
let string = 'aeiou';

function findVowel(x) {

let arr_work = x.split('');
let arr_temp = [];

for (let i = 0; i < string.length; i++) {
arr_work.includes( arr_work[i]);
arr_temp.push( arr_work.includes(string[i]));
}

let out = '';
for (let i = 0; i < arr_temp.length; i++) {
if (arr_temp[i] === false) out = i;
}
return out;
}

findVowel(str);

My Projects