TAG

Javascript

How to round down a number JavaScript [SOLVED]

Different method to round down in JavaScript. Method-1: Using the round method. Method-2: Using the floor method. Method-3: Round down using the trunc method

By olorunfemiakinlua · 3 min read · JavaScript

Leetcode’s Two Sum Problem Solution

The pair sums leetcode problem can be solved using multiple methods such as using brute force in for loop, using objects or using maps

By olorunfemiakinlua · 5 min read · JavaScript

JavaScript textContent Property

Text content makes up a lot of webpages (or HTML documents) and knowing how to access and update them is useful and with the JavaScript textContent property we …

By olorunfemiakinlua · 3 min read · JavaScript

JavaScript Thenable Object

JavaScript thenable is an object that holds or implements the then() method and can have two callbacks, one for when the Promise is fulfilled, and one for when …

By olorunfemiakinlua · 6 min read · JavaScript