Showing Posts From

Javascript

JavaScript: Array Manipulation

JavaScript: Array Manipulation

JavaScript offers different ways to manipulate arrays. However, there are methods that changes the ...

Higher order functions

Higher order functions

I recently started learning JavaScript and I tumbled upon a concept called Higher Order Functions (...

Short circuit in javascript

Short circuit in javascript

Short circuit is an interesting concept in JavaScript where we make JavaScript to evaluate a typica...

Ternary Operators

Ternary Operators

The ternary operator is basically another way to implement the ```if-else``` statement. Now, if it’...