October 17, 2018 1 min read
“JavaScript is the language of the Web… this was probably true in 2005. “
October 27, 2018 1 min read
Adding JavaScript to a page is very easy. In your HTML file just add a script tag before the body tag is s closing.
October 28, 2018 1 min read
You can imagine variables and constants to be like buckets in which you store things for later use.
March 02, 2019 7 min read
The first time when I heard about operators I was in second grade...
March 04, 2019 1 min read
In JavaScript, the while loop executes as long as the specified condition evaluates to true.
March 05, 2019 1 min read
Functions are one of the building blocks of JavaScript. By using functions you can eliminate code duplication make it more modular and easier to use.
March 08, 2019 4 min read
An array is an ordered collection of values. Each value is called an element and each has a numeric position in the array, also known as index.
May 21, 2019 4 min read
An object is a collection of "key: value" pair. The key is a string and is also known as the "property name", the value can be anything.
May 27, 2019 1 min read
Sets it's an object type that was introduced in ES6 that allows to create unique collections of items
June 10, 2019 1 min read
In JavaScript all instructions are executed one by one.
January 04, 2020 4 min read
The document object model or DOM is a programming interface for HTML and XML documents