Frontend Interview Questions ๐Ÿ‡ฎ๐Ÿ‡ณ | ReactJs | NodeJs | JavaScript | HTML/CSS
3.99K subscribers
53 photos
59 links
ReactJs Interview questions and answers
Frontend interview Videos
Download Telegram
๐Ÿ’ฐ ๐Ÿค‘ 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.
console.log(parseInt("123Hello"));
console.log(parseInt("Hello123"));
Anonymous Quiz
23%
123 NaN
27%
123Hello Hello123
39%
NaN NaN
11%
123 123
var a = 1;
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);
Anonymous Quiz
12%
NaN
43%
Number
23%
Object
22%
Array
Once the Target complete
It will be posted ๐Ÿ˜๐Ÿ˜

Vote Now ๐Ÿ‘†๐Ÿ‘†๐Ÿ‘†
function*ย gen() {ย 
ย yield;ย ย 
} var mygen = gen(); console.log(mygen.next().value);
Anonymous Quiz
8%
0
21%
1
65%
Undefined
6%
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);
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 ๐Ÿš€๐Ÿš€

.
let greeting =['Good','Morning'];

let [g1, g2] = greeting; console.log (g1, g2);
Anonymous Quiz
68%
Good Morning
9%
Error
21%
Undefined undefined
2%
None