Pavel Shliatski
Contacts
code example
                        
                            <script>
                                function pow(x, n) {
                              let result = x;
                              for (let i = 1; i < n; i++) {
                                result *= x;
                              }
                              return result;
                            }
                            let x = prompt("Enter x:", '');
                            let n = prompt("Enter n:", '');
                            if (n >= 1 && n % 1 == 0) {
                              alert( pow(x, n) );
                            } else {
                              alert(`The degree must be a natural number.`);
                            }
                            </script>
                        
                    
                about myself
I am a future student of BSUIR. My goal is to become a professional FrontEnd developer. My strengths are sociability, perseverance, punctuality and discipline.
work experience
I did one project while participating in a training intensive.
education
JavaScript/Front-end Pre-School Course by Rolling Scopes School(in process…)Skills
- HTML
 - Git/GitHub
 - JavaScript (Fundamentals)
 - CSS
 
languages
My native languages are Belarusian and Russian. I also know other languages:
- English (B1 level. I continue to learn the language and practice it with native speakers.)
 - Polish (A2 level. I attended offline language courses in my hometown and had a lot of practice.)