Summary
Programing is making life better and I like it.
Education
- Belarusian-Russian University
- Jack Transport, Construction, Road Machines and Equipment
- Enterprise Economy and Management.
- RSSchool, JS / FRONT-END Certificate
- RSSchool, Angular 2022Q1(JavaScript) Certificate
Code sample
This function can take any non-negative integer as an argument and return it with its digits in descending order. Essentially, rearrange the digits to create the highest possible number.
function descendingOrder(t){
let result = t
.toString()
.split('')
.sort((a, b) => b - a)
.join('')
return parseInt(result)
};
English level
B1, and I've working to improve my language skills.