photo

Nikita Ilyanov

Front-End Developer

Work experience

  • Production Manager, BELAZ plant | 2016 - 2021
  • Leading Engineer, BELAZ plant | 2021 - present
  • I want to gain experience in Front-End Development as quickly as possible

Education and Courses

  • BNTU, Vehicle Technical Maintenance, Mechanical Engineer | 2011 - 2016
  • Academy of Public Administration, Public Administartion and Economics, Economist-Manager | 2019 - 2022
  • IT-Academy (HTML, CSS, JS) | 2021
  • JS, CSS, HTML, Git video courses on different YouTube channels
  • learn.javascript

Code example


function firstLettersFromString(stringFirst) {
var newString = stringFirst.split(" ");			
var result = newString.map(function(elem) {
return elem[0];				
});    
console.log(result);
}