JavaScript Daily
12.1K subscribers
34 photos
2 videos
270 links
Daily JavaScript / JS community news, links and events.

"First, software ate the world, the web ate software, and JavaScript ate the web."

'JavaScript' is a trademark of Oracle Corporation in the US. We are not endorsed by or affiliated with Oracle.
Download Telegram
👉 Follow @JavaScriptDaily for regular updates from JavaScript ecosystem.

#JavaScriptQuiz

let points = 100;
let winner = false;

if(points > 90) {
let winner = true;
}

console.log(winner);
👍4😁2