My Photo

Vlad Radzivil

Front-end developer

Contacts

Education

Skills

  • HTML5, CSS3
  • SASS/SCSS
  • JavaScript basic
  • Git, GitHub
  • Gulp
  • Figma
  • English - B1

About Me

I like to learn and learn something new and like that programming gives me the opportunity to create something new. I like working in a team to solve problems. I worked in the EasyPay project as a project development specialist. EasyPay is a payment aggregator in the republic of belarus.

Code Example

Your task is to make a function that can take any non-negative integer as an argument and return it with its digits in descending order.

                                
    function descendingOrder(n){
        return parseInt(String(n).split('').sort().reverse().join(''));
        }
                                
                            

Portfolio