// Fundamentals; What is the difference between "let" and "var"? Published: Dec 09, 2022 2 min read The main difference between using var and let is the scope and whether or not the variable is hoisted.
// Fundamentals; Variable and function hoisting in JavaScript Published: Dec 06, 2022 2 min read JavaScript variables and functions are not declared at the point of use. Instead, they are moved to the top of their scope hoisted and assigned a default value of undefined until they're reached in code.
// Array; How can I remove an elements from an array? Published: Dec 01, 2022 3 min read Removing items from an array in javascript is not as simple as in some languages, but it's not hard when you know how.