Contacts
Skills
-
HTML90%
-
CSS80%
-
GIT70%
-
JS50%
-
PHP60%
-
MySQL70%
-
Flexbox and Grid80%
-
Bitrix80%
Languages
-
English - B1.
-
Serbian - A2.
About me
I love math and programming. I worked with Bitrix for a long time. Recently, I realized that many things, due to long uselessness, began to be forgotten. I want to update my knowledge, improve my level and do those things that I could not have done before.
Codes
Exercise:
Move the first letter of each word to the end of it, then add "ay" to the end of the word. Leave punctuation marks untouched.
Solution:
function pigIt(str){
let res = str.split(' ');
res = res.map((x) => (!'.!?'.includes(x)) ? x.slice(1)+x.slice(0,1)+'ay': x);
return res.join(' ');
}
Projects
Graph exercise
Graph exercise for solution coin drop probabilities.
Education
2015-2019. Higher education of the Immanuel Kant Baltic Federal University, majoring in
Business Informatics.
2019-2020. Studied JS, CSS, PHP and others on htmlacademy.
2020. Took courses from the W3C on edX, called "Front-End Web Developer (FEWD) Professional
Certificate".
2021-2022. Actively studied and worked with PHP and Bitrix, Bitrix24.
2023. More detailed study JS with RSSchool.