
My Contact Info:
- Phone: +375-(29)-545-60-95
- E-mail: artemsturchenko@gmail.com
- Telegram: @artem_sturchenko
- Discord: @artemSturchenko
About Me:
I am 30 years old. I work as an economist. I don't have fascinating tasks in my current job. This development course is a way to challenge myself and gain knowledge for find job in the future.
Skills:
- HTML
- CSS (a bit of practical experience)
- Git
- Basics of Javascript
English:
The latest test on the EPAM portal ranks my knowledge at level B1
Education:
- National Technical University «Kharkov Polytechnic Institute», Electroinsulation and Cable Techniques
- Vitebsk State Technological University, Economics and management at the enterprise
Code Example:
function getCard(){
const array1 = [1,2,3,4,5,6,7,8,9,10,"J","Q","K","A"]
const array2 = ["clubs","spades","hearts","diamonds"]
return {
value: array1[Math.floor(Math.random() * array1.length)],
suit: array2[Math.floor(Math.random() * array2.length)]
}
}