About me
I'm Roman and I'm a Developer
I started studying Front-end development six months ago and as a result I have learned Js and Html at a sufficient level. I'm always receptive to new ideas and my chief goal is to be a proficient Front-end specialist.
I believe my enthusiasm makes me a perfect fit to serve as a Front-end specialist.
My skills
My creative skills & experience.
I consider communication skills (I get on well with people), fast adaptability (I’m flexible), full involvement into working process (I’m a high-flier), professional competence as my personal strengths.
English: Pre-Intermediate
-
HTML
-
CSS
-
Js
-
React
-
Git
Education
-
Belarusian State University of Informatics and Radioelectronics
2019 - 2023
-
Html Academy
2020
-
Code-basics(JavaScript for beginners)
2020
-
React-way-of-samurai
2021
Code example
function spinWords(string){
let arr = string.split(' ')
let newArr = arr.map((item)=>{
if(item.length>=5){
let i = item.length
let newStr= []
while(i>0){
newStr.push(item.slice(i-1,i))
i--
}
return newStr.join('')
}
return item
})
return newArr.join(' ')
}