JSjyoti singhinjyoti8283.hashnode.dev·Mar 20, 2023 · 4 min readJavaScript ES6The Javascript programming language has been around for more than 25 years, and in that time it has changed quite a bit, adding new features and new syntax. It used to take years for new features to enter the language, but the modern Javascript stand...00
JSjyoti singhinjyoti8283.hashnode.dev·Feb 15, 2023 · 7 min readJavaScript ArrayJavaScript array is an object that represents a collection of similar type of elements. //Syntax const myArr = ["ram"," mohan","shyam"]; console.log(myArr); // Output: [ ram, mohan , shyam] JavaScript Array Methods Array.Prototype.at() The at() met...00
JSjyoti singhinjyoti8283.hashnode.dev·Feb 6, 2023 · 4 min readReact HooksHooks are the new feature introduced in the React 16.8 version. It allows you to use state and other React features without writing a class. Hooks are the functions which "hook into" React state and lifecycle features from function components. It doe...00
JSjyoti singhinjyoti8283.hashnode.dev·Jan 29, 2023 · 4 min readTypeScriptWhat is TypeScript? TypeScript is an open-source pure object-oriented programing language. It is a strongly typed superset of JavaScript which compiles to plain JavaScript. It is a language designed for large-scale JavaScript application development,...00