Answer the question
In order to leave comments, you need to log in
Are projects written in pure JS?
Hello.
Are there any projects, sites or applications that are written in vanilla JS. Why is there an abundance of libraries/frameworks and extensions like TypeScript used for Javascript, can their need decrease with the release of Es-6/7 and further specifications?
Answer the question
In order to leave comments, you need to log in
They write if performance is important, but development speed is not.
Are there any projects, sites or applications that are written in vanilla JS.
function wordToUppercase(word) {
return word.toUppercase()
}
function wordToUppercase(word) {
if (word.length > 3) {
return word.toUppercase()
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question