rsschool-cv

Suprun Victoriia

my photo


My contacts:

phone: +380(63)11-36-462

email: v.suprun1961@gmail.com

Telegram: @svictoria1961

Viber: ВИКТОРИЯ


About Me:

I work in a kindergarten as a music director and as an accompanist in the Palace of Children’s Creativity. I am mastering new professions - Web developer and Web designer. I possess such qualities as responsibility, punctuality, attention, organization, conscientiousness, perseverance, striving for professional self-improvement.


Education and work experience:

educational institution | Place of work | Job title | Year :———————–:|:——————:|:———:|:———: Kharkov Mechanical College| Machine building plant| Technologist| 1978-1981 Music College| Kindergarten| Musical director| 1981-1986 Pedagogical University| Kindergarten| Musical director| 1987-2023 Pedagogical University| Palace of Children’s Creativity| Accompanist| 1990-2023

Education and work experience:

  1. Pedagogical University. Palace of Children’s Creativity. Accompanist. 1990-2023
  2. Pedagogical University. Kindergarten. Musical director. 1987-2023
  3. Music College. Kindergarten. Musical director. 1981-1986
  4. Kharkov Mechanical College. Machine building plant. Technologist. 1978-1981

Additional education:

  1. Rolling Scopes School 1.1 RS School Course «JavaScript/Front-end. Stage 1» in progress 1.2 RS School Course «JavaScript/Front-end. Stage 0» Certificate

  2. Courses in HTML, CSS and JavaScript. 2.1 Certificate

    2.2 Certificate

    2.3 Certificate

  3. Programming courses for beginners. Certificate
  4. Web design courses. Certificate
  5. Digital design UX/UI.

    5.1 Certificate

    5.2 Certificate


My projects:


Code Example:

Description:

The checkForSpam(message) function accepts a string (the message parameter), checks it for the content of the prohibited words spam and sale, and returns the result of the check. The words in the message parameter string can be in any case, for example SPAM or sAlE.

If a forbidden word (spam or sale) is found, the function returns the boolean true. If there are no forbidden words in the string, the function returns boolean false.

Сode:

 function checkForSpam(message) {
  let result;
  const normalizedMessage = message.toLowerCase();
if (normalizedMessage.includes("sale")) {
  result = true;
} else if (normalizedMessage.includes("spam")) {
  result = true;
} else {
  result = false;
}
  console.log(result);
  return result;
}

checkForSpam("Latest technology news");
checkForSpam("JavaScript weekly newsletter");
checkForSpam("Get best sale offers now!");
checkForSpam("Amazing SalE, only tonight!");


Languages: