๐ฐ ๐ค Bounty Program ๐ค ๐ธ
Hi @All
I'm sharing an opportunity to make money by sharing me your real Interview videos so that we'll have a collection of interview videos to support each other for the preparation. ๐
You can share your interview Videos at dev.roshann@gmail.com
โ ๏ธ If you don't like please ignore it.
Hi @All
I'm sharing an opportunity to make money by sharing me your real Interview videos so that we'll have a collection of interview videos to support each other for the preparation. ๐
You can share your interview Videos at dev.roshann@gmail.com
โ ๏ธ If you don't like please ignore it.
Frontend Interview Questions ๐ฎ๐ณ | ReactJs | NodeJs | JavaScript | HTML/CSS
๐ฐ ๐ค Bounty Program ๐ค ๐ธ Hi @All I'm sharing an opportunity to make money by sharing me your real Interview videos so that we'll have a collection of interview videos to support each other for the preparation. ๐ You can share your interview Videos at dโฆ
For any query ๐ @mr_rxn
a = [1, 2, 3, 4, 5];
console.log(a.slice(2, 4));
console.log(a.slice(2, 4));
Anonymous Quiz
41%
3, 4
9%
2, 3
42%
3, 4, 5
9%
2, 3, 4
console.log(parseInt("123Hello"));
console.log(parseInt("Hello123"));
console.log(parseInt("Hello123"));
Anonymous Quiz
23%
123 NaN
27%
123Hello Hello123
39%
NaN NaN
11%
123 123
Which of the following are closures in Javascript?
Anonymous Quiz
10%
Variables
38%
Functions
5%
Objects
47%
All of the above
var a = 1;
function bar() {
if (!a) { var a = 10; } console.log(a); } bar();
function bar() {
if (!a) { var a = 10; } console.log(a); } bar();
Anonymous Quiz
36%
10
42%
1
21%
undefined
Channel name was changed to ยซFrontend Interview Questions ๐ฎ๐ณ | ReactJs | NodeJs | JavaScript | HTML/CSSยป
function test(...args) {
console.log(typeof args);
} test(12);
console.log(typeof args);
} test(12);
Anonymous Quiz
12%
NaN
43%
Number
23%
Object
22%
Array
What is true for the keys given to a list of elements in React?
Anonymous Quiz
58%
Unique in the DOM.
32%
Unique among the siblings only.
6%
Do not require to be unique.
4%
None of the above.
Uploaded the Mock Interview Video ๐๐
GO & WATCH NOW ๐๐๐๐
https://youtu.be/Ynl_ZdH5G4w
๐๐๐๐
GO & WATCH NOW ๐๐๐๐
https://youtu.be/Ynl_ZdH5G4w
๐๐๐๐
YouTube
React & JavaScript Mock Technical Interview - [Most Asked Questions-2022]
Send your Interview Video at dev.roshann@gmail.com
Join Telegram group - https://t.me/Reactjs_Interview
Instagram - http://instagram.com/dev.roshan_
Buy me a Coffee - https://www.buymeacoffee.com/dev_roshan
advanced reactjs interview questions
tcs reactโฆ
Join Telegram group - https://t.me/Reactjs_Interview
Instagram - http://instagram.com/dev.roshan_
Buy me a Coffee - https://www.buymeacoffee.com/dev_roshan
advanced reactjs interview questions
tcs reactโฆ
const obj = { foo: 1 };
obj.bar = 2;
obj.bar = 2;
Anonymous Quiz
9%
{ foo: 1 }
71%
{ foo: 1, bar: 2 }
5%
{ foo: 1, 2: bar }
15%
None of the above
function*ย gen() {ย
ย yield;ย ย
} var mygen = gen(); console.log(mygen.next().value);
ย yield;ย ย
} var mygen = gen(); console.log(mygen.next().value);
Anonymous Quiz
8%
0
21%
1
65%
Undefined
6%
None of the above
let num1 = [40,50,60];
let num2 = [10,20,30,...num1,70,80,90,100];
console.log(num2);
let num2 = [10,20,30,...num1,70,80,90,100];
console.log(num2);
Anonymous Quiz
6%
[10,20,30,num1,70,80,90,100]
20%
[10,20,30,[40,50,60],70,80,90,100]
70%
[ 10, 20, 30, 40, 50, 60, 70, 80, 90, 100 ]
4%
None of the above
function show(...args) {
let sum = 0;
for (let i of args) { sum += i; } console.log("Sum = "+sum); } show(10, 20, 30);
let sum = 0;
for (let i of args) { sum += i; } console.log("Sum = "+sum); } show(10, 20, 30);
Anonymous Quiz
65%
60
15%
Undefined
12%
Error
2%
10
6%
None of the above
๐๐ Go & Watch now! ๐ฅณ
โ๏ธ L&T (LTI) ReactJs Frontend Interview - (Round 1)
โ Selected โ
โ ๏ธ I'll remove the Company name from the title after a few hours.
๐๐
https://youtu.be/mgibv2rXiEU
๐๐
I'll upload the ๐ 2nd round video also If I get the good Response ๐๐
.
โ๏ธ L&T (LTI) ReactJs Frontend Interview - (Round 1)
โ Selected โ
โ ๏ธ I'll remove the Company name from the title after a few hours.
๐๐
https://youtu.be/mgibv2rXiEU
๐๐
I'll upload the ๐ 2nd round video also If I get the good Response ๐๐
.
YouTube
Cognizant ReactJs Interview (Round-1) | ๐ Selected | ReactJs & Javascript | Frontend
this is just the interview experience and If you know the right answers please comment below which can also help others.
Please don't judge and comments on my answers.
Send your Interview Video at dev.roshann@gmail.com
Join Telegram group - https://tโฆ
Please don't judge and comments on my answers.
Send your Interview Video at dev.roshann@gmail.com
Join Telegram group - https://tโฆ
let greeting =['Good','Morning'];
let [g1, g2] = greeting; console.log (g1, g2);
let [g1, g2] = greeting; console.log (g1, g2);
Anonymous Quiz
68%
Good Morning
9%
Error
21%
Undefined undefined
2%
None
What is the JavaScript code snippet to find all container elements with class โrevealโ?
Anonymous Quiz
12%
var elements = document.getElementByName(โrevealโ);
43%
var elements = document.getElementByClassName(โrevealโ);
39%
var elements = document.getElementsByClassName(โrevealโ);
6%
var elements = document.getElementsClassName(โrevealโ);