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
- Yaroslav Mudryi National Law University, Kharkiv, Ukraine
- JS/FE PRE-SCHOOL 2022 (JAVASCRIPT), The Rolling Scopes School, certificate
- JavaScript 2.0, itgid.info by Alexander Lushchenko, certificate
- OOP JavaScript, itgid.info by Alexander Lushchenko, certificate
- Arrays Methods, itgid.info by Alexander Lushchenko, certificate
- JS Functions, itgid.info by Alexander Lushchenko, certificate
- Build Responsive Real-World Websies with HTML and CSS, by Jonas Schmedtmann certificate
- Responsive Web Design corse, FreeCodeCamp, certificate
- HTML for JavaScript Developers, itgid.info by Alexander Lushchenko, certificate
- JavaScript - The complete Guide by Maximilian Schwarzmüller (in progress)
- The Complete JavaScript Course 2022 by Jonas Schmedtmann (in progress)
- Web Developer by Ivan Petrichenko (in progress)
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);