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.
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);
Small own business – Fast-food delivery(Since 2014).
I have little experience in JS and Frontend development. I have worked in the team on several small projects and currently working.