rsschool-cv

Daria Volchkova

Junior Frontend Developer


Contact Information:


About Myself:

I’m a frontend developer who loves creating cool and user-friendly interfaces. I’m skilled in HTML5, CSS3 (BEM, SCSS, animations), JavaScript, and TypeScript. I work with Vue 3 and Vue CLI to build fast and convenient apps. I use GitHub for team collaboration and have experience with Photoshop and Figma to make sure the design always looks great. I strive to write clean code and create interfaces that users really enjoy.


My Skills:


Code examples:

*You probably know the “like” system from Facebook and other pages. People can “like” blog posts, pictures or other items. We want to create the text that should be displayed next to such an item.
Implement the function which takes an array containing the names of people that like an item.


function likes(names) {
  const like = names.length;
  
  if(!like) {
    return 'no one likes this';
  } else if (like === 1) {
      return `${names[0]} likes this`;
  } else if (like === 2) {
      return `${names[0]} and ${names[1]} like this`;
  } else if (like === 3) {
      return `${names[0]}, ${names[1]} and ${names[2]} like this`;
  } else if (like > 3) {
      return `${names[0]}, ${names[1]} and ${like - 2} others like this`;
  } else {
    return 0;
  }
}

Education:


####Northwestern State Correspondence Technical University, St. Petersburg.
Management and computer science in technical systems, Software Engineer


Languages: