SKSudhanshu kumarinsudhanshumodi.hashnode.dev·Aug 11, 2023 · 11 min readPrototype in JavaScriptLet's understand prototype with a question Let's just say I have a really simple method or string here that, hey I want to simply have some functionality so I am going to say let myName = "Sudhanshu" Notice here how many characters are there What is...00
SKSudhanshu kumarinsudhanshumodi.hashnode.dev·Aug 10, 2023 · 12 min readJavaScript ObjectsThere are two types of Datatypes in JavaScript, primitive and non-primitive. An object is non-primitive datatype. Nearly all objects in JavaScript are instances of Object; a typical object inherits properties (including methods) from Object.prototype...00
SKSudhanshu kumarinsudhanshumodi.hashnode.dev·Aug 2, 2023 · 5 min readJavaScript Array methodsJavaScript is a programming language. It is maintained by ECMA SCRIPT. Array An Array is a non-primitive data type, we can store different types of values inside an Array. example: let arr = [1, 2, 'Sudhanshu', "Modi", 8.6] An array is enclosed with...00
SKSudhanshu kumarinsudhanshumodi.hashnode.dev·Aug 1, 2023 · 1 min readGit and MarkdownGit is a version control system to manage source code history. Git is open-source licensed and maintained by Linux. The most important thing in Github is maintaining a good README.md page because when someone visits your GitHub profile they are more ...00
SKSudhanshu kumarinsudhanshumodi.hashnode.dev·Jul 19, 2023 · 2 min readGrid in CSSGrid Gris is a two-dimensional layout design that makes web pages with the help of rows and columns. To make any container grid we use display: grid .grid{ display: grid; } After assigning the display property as a grid now we can make rows and ...00