SNSreedhar Nambiinsreedharnambi.hashnode.dev·Jan 19, 2022 · 4 min readLists in PythonBefore going into List, an in-built data structure in python , Let us understand what's a data structure ? Data structures allows us to store and organize data efficiently. After storing data we can easily access and perform operations on this data. ...00
SNSreedhar Nambiinsreedharnambi.hashnode.dev·Jan 13, 2022 · 2 min readHoisting in JavaScriptBefore going into Hoisting let us see in how many ways we can declare a function in JavaScript. 1. Function Declaration : We will write a simple function which adds two numbers and logs the sum in console. function sum(a, b){ console.log(a+ b) }; 2. ...00