Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 7, 2022 04:12 am GMT

JavaScript Basic Fundamentals asked In Interviews

Introduction

Do you Know The most Loved Programming Language is Javascript, It Also the weirdest programming Language also.

How JavaScript Works & Execution Context ?

Everything In JavaScript happens inside the Execution Context.

Execution Context is a box which consist of two table

variable Environment Thread of Execution

MemoryCode
key: value- 0, -
  • memory part also called as variable env,where it stores the variable,function etc
  • Code part where all codes are runs line by line at a time.

Javascript Is Synchronous-Single-threaded language.

How JavaScript Code is executed? and CallStack?

What is a browser JavaScript engine?

A JavaScript engine isa software component that executes JavaScript code.

ECMAScript
is the standardized specification of JavaScript,ECMAScript engine
is another name for these engines.

Which Engine used by most popular browser ?

Google chrome V8

firefox spidermonkey

safari javascript core apple engine

Chakra internet Explore

var n = 2function square (num) { var ans= num * num return ans}var square2 = square(n)var square = square(4)

When the code runs Global Execution context is created:

it has two-part

  • Memory allocated phase
  • Code creation phase

1st Phase

memory allocating to all variables and functions

Untitled

2nd phase

code execution phase

Untitled

when a function is invocation happens

it will create a new execution context

  • memory
  • code

Untitled

then again new function invocation another exhicution context is created

Untitled

The whole thing managed by Stack is called Callstack

GEC Global Execution Context

Ec1 function is invoked and one execution context is created

after it complete the job it popped out

Ec2 it will push into the call stack

after it done it gets popped out

at last call, stack will be empty

Untitled

Untitled

callstack maintains the order of the execution of execution context

So call stack is also known as :

  • Execution context stack
  • program stack
  • control stack
  • runtime stack
  • machine stack

Hosting In Javascript ? [variables and functions ]

Hosting is the Phenomenon in javascript by which we can access the variable and function even before we initialized it.

we can access it without any error.

getName(); // javascript basicconsole.log(x); // undefinedconsole.log(getName); // prints the actual codevar x = 13;function getName() {  console.log("Javascript basic");}
getName(); // javascript basicconsole.log(x); // undefinedconsole.log(getName); // prints the actual code// getName2(); // error is not a funtiongetName3(); // error is not a funtionvar x = 13;function getName() {  console.log("Javascript basic");}var getName2 = () => {  console.log("arrow funtion ");};var getName3 = function () {  console.log("funtion another way to defined");};

on the memory allocation phase getName2 and getName3 will allocate as undefined so the function is not invoked.

How function works in Javascript and variable environment?

var x = 1;a(); // 10b(); // 100console.log(x); // 1function a() {  var x = 10;  console.log(x);}function b() {  var x = 100;  console.log(x);}

Untitled

Shortest Javascript Program & Window and This keyword ...

Window

so in javascript, the window is a Global object is created along with the Global execution context.

also, this variable is created. which is refers to the window object.

window === this // true
var a = 33;function sbs() {  var d = 88;  console.log(d);}console.log(window.a);//10 this is global object//  console.log(d);// errorconsole.log(this.a);// 10// every thing inside this is global obj but inside function is local

What is Undefined and not defined?

undefined just like a placeholder to any variable

  • when the program runs js engine allocates all variable in memory allocation phase.

all as undefined.

console.log(a) // undefinedvar a ;

not defined if it is not defined in the program then an error will give

which has not been allocated memory

console.log(d) // error not defined

The scope chain & Lexical Environment?

scope: scope means where you can access a specific variable or function in our code

lexical: heritage or sequence or in order

Lexical environment : It is the local memory along with the lexical environment of its parants.

Scopechain - finding the way variable inside lexical env. goes to parent then parent ref. this is called as scope chain

function a() {  b();  function b() {    c();    function c() {      console.log(x);    }  }}var x = 100;a(); // 100

Untitled

What is Temporal Deadzone? var,let,const ? diff between syntax err, reference err,type Err ?

Temporal Deadzone - Temporal dead zone is the time since when the let, const variable is hoisted and till it is initialized some value. the time between that is known as called Temporal dead zone

TLDR : From hosting till it gets some value that phase Temporal deadzone.

  • note

in case of var they are allocated memory & hosting in global object

but in let and const they are allocated memory & hoisted they are stored in different memory space other than that global.

they stored in a script.

you cant access it before do some value in it.

Differences between var, let, and const

varletconst
The scope of avarvariable is functional scope.The scope of aletvariable is block scope.The scope of aconstvariable is block scope.
It can be updated and re-declared into the scope.It can be updated but cannot be re-declared into the scope.It cannot be updated or re-declared into the scope.
It can be declared without initialization.It can be declared without initialization.It cannot be declared without initialization.
It can be accessed without initialization as its default value is undefined.It cannot be accessed without initialization, as it returns an error.It cannot be accessed without initialization, as it cannot be declared without initialization.
{    var a= 12}console.log(a) // 12   no error // but{    let a = 22    const b =21}console.log(a,b) // error you a ,b not defined// 2nd row{    var a = 'helo'    a = 'some' var a = 'new' // updated ,redeclared let b = 'the weeknd' b = 'able' // updated let b = 'doja cat' // error it can't be redecalred const c = 11 c = 22 // error const c = 33 // error it can't redecalre or updated}// 3rd row{ var a ;  // it can declare without initlization let b ;  // it can declare without initlization const c ; //error}// 4th row{ var a ; console.log(a) //default value undefined}

Error Types

--- reference errorconsole.log(a) // reference error before initialied can't accessconst a = 10-----------------------syntax errlet b = 100let b = 10 // syntax error doesn't run single line of code----------------typeerrorconst c = 20c = 40 // typeerror assigning to a const variable

Block scope & shadowing in js?

block is defined

{

...

}

it combines multiple statements in one group.

block groups the multiple statements into one

so that we can use it where js excepts one statements.

ex- if(true) gives error

but

if(true) expects a statement

if(true) {

var a = 2

console.log(a)

}

block scope : what var, fun can access inside this block

{ var a = 10 let b = 20console.log(a) // 10console.log(b) // 20}console.log(a) // 10console.log(b) //err// shadowingvar a = 100{var a = 10 // this variable shadows outside variable}console.log(a)// 10----------------but let a = 25{ let a = 20console.log(a) // 20}console.log(a) //25

Closures in JavaScript ?

def

closures : is a function binds together with its lexical env. is forms closers.

function x() {  var a = 102;  y();  function y() {    console.log(a);  }}x(); // 102

Mdn Docs : functions bundled together with references to its surrounding states or lexical env.

it gives access to another function scope from inner function.

use of closures :

  1. module design pattern
  2. currying in js
  3. functions like once
  4. memorization
  5. maintain state in async world
  6. set Timeouts
  7. iterations
  8. many mores....

Original Link: https://dev.to/itishprasad30/javascript-basic-fundamentals-asked-in-interviews-4nak

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To