Priyojit Singhanerdbash.hashnode.dev·Jan 28, 2024Arrays in JavaScript - introductionThe Array is a type of object in JavaScript which allows us to store a collection of multiple items under a single variable name. You can consider it as a list of elements. Each items of the array are reffered to as elements and the position of the e...JavascriptJavaScript
Priyojit Singhanerdbash.hashnode.dev·Jan 27, 2024Demystifying dates in JavaScriptJavaScript gives us a date object to work with dates and times in your projects. It's one of the important thing to learn and understand. In most of the products apps and website you will find yourself calculating time and date. But lot of the time a...1 likeJavascriptJavaScript
Priyojit Singhanerdbash.hashnode.dev·Jan 16, 2024String in Javascript in detailsStrings are a type of primitive datatype that can hold string values, or basically sentences, words, or characters. A string is a primitive type, which means it is stored in the stack memory. So when you try to make any change to the value, the origi...1 likeJavascriptJavaScript
Priyojit Singhanerdbash.hashnode.dev·Jan 1, 2024All You Need to Know About Numbers in JavaScriptNumber is a datatype in JavaScript that can hold all types of integers, whether signed or unsigned, as well as floating-point numbers. let number = 60; let floatingPointNum = 59.89; We all know that JavaScript is a dynamically typed language, meanin...Javascriptnerdbash