SBShriram Balajiinshriram21.hashnode.dev·Jul 13, 2023 · 16 min readOperating System for InterviewMade by Shriram🧑💻(ISE-24) from Striver's SDE Core Sheet with the addition of a few reference links and formatting into a readable format using Obsidian (my favourite note-taking tool). What is the main purpose of an operating system? Discuss diff...00
SBShriram Balajiinshriram21.hashnode.dev·Nov 5, 2022 · 6 min readEverything you need to know about npmHello folks🙋, in this blog we will be discussing on npm, what is npm, how to install npm, Installing packages from npm(UUID) and semantic versioning. NPM - Node Package Manager NPM is a huge part of javascript ecosystem these days, so it is definit...01A
SBShriram Balajiinshriram21.hashnode.dev·Nov 1, 2022 · 2 min readWhat's and Why's of Node.jsHello folks👋, in this blog I am going to explain what is Node.js and why it is created and Key benifits of Node.js. Before jumping into what is Node.js we need to know a brief history of javascript, to understand why Node.js is created. A brief his...00
SBShriram Balajiinshriram21.hashnode.dev·Aug 27, 2022 · 5 min readA beginner's guide to arrays and array methodsArrays in Javascript what is an Array? Array is just a collection of data. Creating array in javascript we use brackets separated by comma in array notation //using arrayy literal notation const arr1 = ['India', 'USA']; //using the Array() constr...00
SBShriram Balajiinshriram21.hashnode.dev·Aug 6, 2022 · 5 min readIntroduction to Flex BoxTo clarify, what you can accomplish with a flex box or its power is shown below. .container{ display: flex; justify-content: center; align-items: center; } The ability to centre the div with only three easy lines of CSS is a lifesaver. ...00