SShubhaminshubhamv.hashnode.dev·Mar 12, 2023 · 6 min readJavaScript Logical OperatorsIn JavaScript, there are logical operators that will help us concisely express complex conditions. Let's say we wanted to travel to an island by boat or by plane. In English, we use or in the previous sentence to express we're willing to take either ...00
SShubhaminshubhamv.hashnode.dev·Mar 4, 2023 · 8 min readJavaScript ObjectsIt's time to take a deeper look at another type of storage: object. The object initializer syntax starts with an open curly brace { and ends with a closed curly brace} with a list of key-value pairs in the middle. Let's take a look at a person's obje...01J
SShubhaminshubhamv.hashnode.dev·Mar 1, 2023 · 12 min readWorking with the array in JavaScriptQuite often in programming, we need to deal with numerous elements at once. Let's say we have a list of test scores and we want to calculate the average score. In JavaScript, we would use an array to store the score: const array = [70, 80 , 65, 100, ...00
SShubhaminshubhamv.hashnode.dev·Feb 28, 2023 · 5 min readString Manipulation in JavaScriptFor most applications, it's important to be able to store and display massage! As we learned in the previous lesson we will store these massage in data types called strings. Sometimes, after we store a massage in a string we need to manipulate it in ...00
SShubhaminshubhamv.hashnode.dev·Feb 27, 2023 · 10 min readJavaScript LoopsComputers are super efficient at running a large number of simple tasks! As programmers, we take advantage of this speed by writing programs that will repeatedly do some task until a specific condition is met. If I wanted to scan hundreds of books fo...00