emscripten - Emscripten: An LLVM-to-JavaScript Compiler...
Read more »
There are several problems with the JavaScript name. Is it time to rebrand JavaScript? If so, what should we call it? (more…)
Read more »
To detect if the caps lock is on, use the getModifierState() method for the KeyboardEvent object: const capslockIsOn = event.getModifierState(modifier); The getModifierState() (...)... (more…)
Read more »
Callbacks are a very important topic to understand in javascript. In this article, We will be seeing what Callbacks are and how to use them. What are Callbacks First, we will see a regular javascript function, and from there we will see how callbacks are ... (more…)
Read more »
Hoisting in JavaScript when it comes to variables, function declarations and function expressions. (more…)
Read more »