SGSomanshu Groverinsomanshu63.hashnode.dev·Sep 21, 2022 · 8 min readJavascript String MethodsJavascript has 18 string methods explained below CharAt Parameter: (index) defaults to 0 - (number data type) Return: character at specific index in the string (string data type) charAt accepts a index (number data type) and return the character on t...01
SGSomanshu Groverinsomanshu63.hashnode.dev·Sep 21, 2022 · 4 min readBasics of JAVASCRIPTBASICS Javascript has a list of basics things explained below- variables We can create elements by var x; let y; We can assign value to them as x = 5; y = 6; let z = x + y; Or we can directly create and assign value in 1 step var x = 5; If you have t...00
SGSomanshu Groverinsomanshu63.hashnode.dev·Sep 21, 2022 · 2 min readIntro to JavascriptJAVASCRIPT Javascript is a programming language used in web development It is used to add interactivity to the website, also to create a website dynamically JavaScript is one of the 3 languages all web developers must learn: HTML to define the conte...00
SGSomanshu Groverinsomanshu63.hashnode.dev·Sep 20, 2022 · 4 min readSass - CssSass Basics CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass has features that don't exist in CSS yet like nesting, mixins, inheritance, and other nifty g...00
SGSomanshu Groverinsomanshu63.hashnode.dev·Sep 15, 2022 · 3 min readBasic Html & Css TemplateThis is a basic template of a Resume using HTML & CSS this will help make you understand how things work in html and css combined together you can easily visit my old blog posts for the introduction of html and css seperately to make a html webpag...00