rsschool-cv

Elvin Yekayev

My Contact Info

Summary

I’m currently working several small web projects (example: speakers.az).My goal is to learn everything new and exciting. I love to code and coffee. I can(love) spend a lot of time doing what interests me. My core strengths are in problem solving and fast learning.I want to get knowledge and skills that will be enough for employment in a company.

Skills

Code examples

function{color:blue} findLongestWord(text) {
    let words = text.split(" ");
    let word = "";
    // for (let i = 0; i < words.length; i++) {
    //     if (word.length < words[i].length) {
    //         word = words[i];
    //     }
    // }
    for (let item of words) {
        if (word.length < item.length) {
            word = item;
        }
    }
    return (word);
}
const longestWord = findLongestWord("Lorem ipsum dolor sit 
amet, consectetur adipiscing elit. Praesent 
rutrum, quam sit amet semper tempus, velit 
nibh pellentesque dui, nec consectetur 
erat orci et libero. ");
console.log(longestWord);

Education

Experience

Languages



rsschool