JavaScript tips and tricks

December 14th, 202551146 Use objects/classes to encapsulate your application logic and try not to pollute the global variable scope as this can cause frustrating problems such as libraries not...

Javascript let vs var

December 10th, 20257679 Differences Between JavaScript var vs Let JavaScript is a scripting language that declares variables of various kinds using keywords like let, const, or Var. Let and...

Useful JavaScript globals

November 5th, 202536881 Math.random() - generates a randon number between 0 and 1. You can multiply the number to get a number in a different range. Math.floor(numberHere) - it would trim...

Cool New JavaScript Features

November 5th, 202519715 We are going to share you some cool JavaScript features you will love them features like Base64 encoding and decoding, The vibration API, Constants, CSS property is...

JavaScript tips and tricks, Part 2

November 3rd, 202519907 Minifying your code makes it smaller in size which increases the website’s loading speed, which increases the ranking of the website in search engine and so on. There...
Page 1 of 212