.
function isIsogram(str) {
return new Set(str.toLowerCase()).size === str.length ? true : false
}
Hello!
I'm a beginning front-end developer.
My goal for the next year is to get a job as a junior developer.
I'm open to new ideas, ready for self-study, have a desire to drastically change my life.
I have various hobbies such as drone racing, fpv and growing super hot peppers.
Belarusian National Technical University, Faculty of Instrumentation, Technical Security
RS School JS/FE stage 0
RS School JS/FE stage 1
Work in Belarusian State Medical University, IT engineer
Solve tasks on www.codewars.com
Graduated from course RS School JS/FE Stage 0
DOM, LocalStorage, querySelector, setTimeout
DOM, Date, querySelector, setTimeout
DOM, mouseMove, querySelector, append/prepend
HTML + CSS + JS, Figma
function isIsogram(str) {
return new Set(str.toLowerCase()).size === str.length ? true : false
}