Ionut Andrei Dirlea

Javascript Essentials

Starting With Javascript

October 17, 2018 1 min read
“JavaScript is the language of the Web… this was probably true in 2005. “

Adding JavaScript To Your Page

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.

Variable And Constants

October 28, 2018 1 min read
You can imagine variables and constants to be like buckets in which you store things for later use.

Javascript Operators

March 02, 2019 7 min read
The first time when I heard about operators I was in second grade...

For loops, while loops

March 04, 2019 1 min read
In JavaScript, the while loop executes as long as the specified condition evaluates to true.

Functions in JavaScript

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.

Arrays

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.

Objects

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.

Sets

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

The DOM

January 04, 2020 4 min read
The document object model or DOM is a programming interface for HTML and XML documents