RSSchool-CV

  1. Valentin Razumny

  2. Razumny.Valentin@gmail.com; +79135131827

  3. At the moment, the main goal is to learn JS Css html at a medium-high level. Graduate from the university in special education “Design of aircraft engines and power plants”. I have a great desire to go into the IT field. Since I want to create proets, courses, collaborate with companies, and see how I progress every day

  4. At school, I studied C, C++. After university, I read about html and css. At this stage, I am studying Js

  5. My code example:

    
    function fizzbuzz(n){
        let arr = [];
        for (let i = 1; i <= n; i++){
        arr[i - 1] = i;
        }
        for (let i = 0; i < n; i++){
            if(arr[i] % 3 == 0 && arr[i] % 5 == 0){
                arr[i] = 'FizzBuzz';
            }
            else if (arr[i] % 3 == 0){
                                            arr[i] = 'Fizz';
            }
            else if(arr[i] % 5 == 0){
                arr[i] = 'Buzz';
            }
        }
        return arr;
    }
                            

  6. At school, solving problems on websites codeforces.com. Self-learning JS, css, html.

  7. On home self-study creating websites on the Tilda constructor in Zeroblock. Online training htmlacademy.ru. Also prochenie books on the site learn.javascript.ru.

  8. At the moment, the level of English is A2.