rsschool-cv

(FULL NAME) Bers Dzariev

(CONTACTS) Location: Belarus
Phone: +79888158808 Email: berscrpt@gmail.com GitHub: https://github.com/BersDzariev
Telegram: @bersanchos

(ABOUT ME) I am a student and I am interested in programming and web development.
I started with frontend because I want to learn how websites and interfaces are built.
I want to improve my frontend skills because I know they will be useful for me in the future.
Later I also plan to learn Python.
In the future I want to create my own startup project, something like a trading bot.
Right now I am learning the basics and trying to improve step by step.

(SKILLS) HTML basic
CSS basic
JavaScript basic
Git and GitHub basic
VS Code

(CODE EXAMPLE)

This function finds the average of numbers in an array. It adds all numbers together, then divides the sum by how many numbers there are.
If the array is empty, it returns 0.

function getAverage(numbers) { if (numbers.length === 0) { return 0; }

let sum = 0;

for (let i = 0; i < numbers.length; i++) { sum += numbers[i]; }

return sum / numbers.length; }

const result = getAverage([10, 20, 30, 40]); console.log(result);

(EDUCATION) I am currently a school student.
I am learning programming on my own using videos, articles and practice.
I also follow online tutorials and try to build small projects.

(ENGLISH) My English level is around B1, close to B2.
I can understand most texts and videos.
I sometimes have difficulty with speaking and unknown words, but I am improving.