Dear Friends,

Please donate us by Sharing our Channel to your Friends. So that we can create quality videos and good content.

All contents in this channel will be in Hindi.

In this channel, We will provide you tutorials, interview questions and support. This channel is created for programming languages like PHP, ECMAScript(ES6), Angular, React, NodeJs, JavaScript, TypeScript, Core Java, Advance Java, MySql, MongoDB, SpringBoot.

In this channel, We also share interview questions with you. So that it will helpful to clear an interview.

This channel is associated with Guidance Facebook Page and Tutorials24 facebook page.

Some channels available on Telegram:
Angular Interview experts
Java Interview experts
React Interview experts
Mysql Interview experts
Mysql & MongoDB Developers
Some Important Playlists:

1. MySql Interview Queries Playlist:
youtube.com/playlist?list=PL-dwj4UAzfFultB23iPa9sI…

Connect me by
baljeet.icfai2@gmail.com


AtoB

What will be the output?
let x = [1,2,3];
let [y,...z] = x;
console.log(typeof z);

2 years ago | [YT] | 1

AtoB

What will be the output?
let x = { a: { b : 1 } };
let y = JSON.parse(JSON.stringify(x));
y.a.b = 10;
console.log(x.a.b);

2 years ago | [YT] | 1

AtoB

What will be the output?
let x = [1, 2, 3];
x[10] = 10;
console.log(x.length);

2 years ago | [YT] | 1

AtoB

String Methods

2 years ago | [YT] | 2

AtoB

What will be the output?
let x = ['a', 'b', 'c'];
let y = x.join('-');
console.log(y);

2 years ago | [YT] | 0

AtoB

What will be the output?
let x = [1, 2, 3];
let y = x.join("-").split("-");
console.log(y)

2 years ago | [YT] | 0

AtoB

What will be the output?
let x = [1, 2, 3];
let y = x.reduce((a, b) => {
return a * b;
},2);
console.log(y);

2 years ago | [YT] | 0

AtoB

What will be the output?
var num = 8;
var num = 10;
console.log(num);

2 years ago | [YT] | 1

AtoB

What will be the output?
let x = 0;
console.log(x++);
console.log(++x);

2 years ago | [YT] | 1

AtoB

What will be the output?
let x = [1, 2, 3];
let y = x.indexOf(2) * 2;
console.log(y);

2 years ago | [YT] | 0