PRPramod Reddyinppr.hashnode.dev·Sep 11, 2022 · 2 min readMust Know JavaScript topicsSynchronous single threaded. Java Script is a synchronous single threaded language. It can also behave asynchronous with help of async and await.As of now they are separate topics to discuss Synchronous means execution happens line by line as it is ...00
PRPramod Reddyinppr.hashnode.dev·Sep 11, 2022 · 2 min readHoisting!!!!Introduction JavaScript file when runs it actually completes in two steps . One is scanning the file from top to bottom and other is execution step. In scanning step , js reads all variables and initialise undefined to them and read functions decl...00
PRPramod Reddyinppr.hashnode.dev·Sep 11, 2022 · 2 min readScope.....What is Scope in Programming ? Scope is all about current context of execution and values available in the context. If you try to access the values or variables that are not in current context you will get an error. The current context may be a globa...00
PRPramod Reddyinppr.hashnode.dev·Aug 27, 2022 · 8 min readJavaScript Arrays and Its Methods!!!Check out my Git hub for latest projects Git Hub Also check out my profile on findcoder.io Pramod Reddy Pandiri Intro In Programming, Array is collection of similar or dissimilar elements .We can store and retrieve when needed I think every programmi...00
PRPramod Reddyinppr.hashnode.dev·Aug 6, 2022 · 2 min readFirst Step in Web DevTo accomplish anything , we need to show up for the first step itself . There onwards things will fall in place one such thing in becoming a developer is learning the first ever language (i.e HTML) . HTML5 Have you ever wondered , how the text we are...00