YMYaswanth Myneniinyaswanthmyneni.hashnode.dev·May 20, 2022 · 2 min readFunction Declaration vs Function ExpressionFunction Declaration: A function declaration defines a function with the specified parameters. The function declarations are processed before the code block is executed. They are visible everywhere in the block. function sayHi () { ...some code h...00
YMYaswanth Myneniinyaswanthmyneni.hashnode.dev·May 19, 2022 · 3 min readPure and Impure functionsWhat are functions? The function is a piece of code that will help if we are writing the same code repeatedly. function iAmFunction() { ...some logic here } We will call the above function like this as shown below iAmFunction(); What are pure an...00
YMYaswanth Myneniinyaswanthmyneni.hashnode.dev·Aug 20, 2021 · 2 min readPre-Lockdown (Part-1)Hello everyone, my name is Yaswanth Myneni. I graduated with a degree B.Tech CSE from the Hindustan Institute of Technology and Science in the year 2021. I currently living in Tirupati, Andhra Pradesh. I joined engineering in July 2017. The first se...00
YMYaswanth Myneniinyaswanthmyneni.hashnode.dev·Aug 18, 2021 · 4 min readLet in Javascriptlet: The let statement declares a block-scoped, local variable. syntax: let x ; let x = 2 ; Description: In the usage of let, we can divide the let concepts into three categories, they are Scoping rules. Re-declaration. Temporal dead zone. Scopin...00