SRShivansh Rawatindevsama.hashnode.dev·Jan 2, 2023 · 3 min readReact - ComponentsWhat is React? React is a JavaScript library for building user interfaces. It was developed by Facebook and is often used for building single-page applications and mobile applications. One of the main benefits of React is that it allows developers to...00
SRShivansh Rawatindevsama.hashnode.dev·Jan 2, 2023 · 3 min readArray in JavascriptIn JavaScript, an array is a collection of values that are stored in a single variable. Arrays are created using square brackets, and the values inside the brackets are each separated by commas. In JavaScript array is a non-primitive datatype. It can...00
SRShivansh Rawatindevsama.hashnode.dev·Jan 2, 2023 · 3 min readJavascript FunctionsIn JavaScript, a function is a block of code that can be defined and then called by name. Functions allow you to reuse code and can be used to perform a specific task. Here is an example of a simple function in JavaScript: function greet(name) { co...00