Hi Team, just need 1 subscriber & weโll be the team of 20K members ๐๐
https://m.youtube.com/@DevAditya
https://m.youtube.com/@DevAditya
๐ Exciting News! ๐
Team, we did it! ๐
๐ฅณ We've hit 20K subscribers on our YouTube channel for front-end interview prep videos! ๐ฌ
Let's keep rocking and aiming for more success together.
Cheers to the team! To the all members of this Group ๐๐ #MilestoneAchieved
https://m.youtube.com/@DevAditya
Team, we did it! ๐
๐ฅณ We've hit 20K subscribers on our YouTube channel for front-end interview prep videos! ๐ฌ
Let's keep rocking and aiming for more success together.
Cheers to the team! To the all members of this Group ๐๐ #MilestoneAchieved
https://m.youtube.com/@DevAditya
Guess the output
const value = [1, 2, 3] + [4, 5, 6]; console.log(value);
const value = [1, 2, 3] + [4, 5, 6]; console.log(value);
Anonymous Quiz
57%
[1, 2, 3, 4, 5, 6]
18%
โ123456โ
4%
15
21%
1,2,34,5,6
Guess the Output
console.log(true && โHiโ && โHelloโ)
console.log(true && โHiโ && โHelloโ)
Anonymous Quiz
24%
Error
49%
Hi, Hello
7%
Hi
19%
Hello
๐ Exciting Opportunity Alert! ๐
Are you eager to kick-start your career but facing challenges in getting those important calls from companies? Look no further! ๐
Our referral program is here to help you shine.
๐ Share your profile with us, and our dedicated team will personally refer you to trusted and genuine companies.
Rest assured, we won't share your profile with just anyone. ๐ โโ๏ธ We thoroughly verify the recruiters to ensure you don't receive any spam in your inbox. ๐
Get ready to take that next big step in your career!
๐ All the best.
Apply for a referral using the link below:
๐ https://forms.gle/uEC7Mo9CgJndnodp6 ๐
Don't wait! Your dream job could be waiting for you. ๐ผโจ #ReferralProgram #CareerOpportunity #SuccessAwaits
Are you eager to kick-start your career but facing challenges in getting those important calls from companies? Look no further! ๐
Our referral program is here to help you shine.
๐ Share your profile with us, and our dedicated team will personally refer you to trusted and genuine companies.
Rest assured, we won't share your profile with just anyone. ๐ โโ๏ธ We thoroughly verify the recruiters to ensure you don't receive any spam in your inbox. ๐
Get ready to take that next big step in your career!
๐ All the best.
Apply for a referral using the link below:
๐ https://forms.gle/uEC7Mo9CgJndnodp6 ๐
Don't wait! Your dream job could be waiting for you. ๐ผโจ #ReferralProgram #CareerOpportunity #SuccessAwaits
๐ฅณ๐ We've a WhatsApp channel now.
๐ to join click below ๐
https://whatsapp.com/channel/0029VaARyLCC6ZvlimyPIQ0p
๐ to join click below ๐
https://whatsapp.com/channel/0029VaARyLCC6ZvlimyPIQ0p
Guess the output
var output = (function(x) {
delete x; return x; })(0); console.log(output);
var output = (function(x) {
delete x; return x; })(0); console.log(output);
Anonymous Quiz
32%
0
18%
error
46%
undefined
4%
true
console.log( !!null, !!'', !!1 )
Anonymous Quiz
24%
false true false
35%
false false true
19%
false true true
21%
true true false
Guess the output
let x = [3,4,5,6,7][1,2,3]
console.log(x)
let x = [3,4,5,6,7][1,2,3]
console.log(x)
Anonymous Quiz
42%
[3,4,5,6,71,2,3]
23%
Undefined
25%
error
10%
6
Guess the output
let x = 2;
let y = (x++, 10) console.log(x, y)
let x = 2;
let y = (x++, 10) console.log(x, y)
Anonymous Quiz
17%
2, 310
45%
3, 10
21%
2, 10
17%
Error
๐ Exciting Opportunity Alert! ๐
Our referral program is here to help you shine.
๐ Share your profile with us, and our dedicated team will personally refer you to trusted and genuine companies.
Rest assured, we won't share your profile with just anyone. ๐ โโ๏ธ We thoroughly verify the recruiters to ensure you don't receive any spam in your inbox. ๐
Get ready to take that next big step in your career!
๐ All the best.
Apply for a referral using the link below:
๐ https://forms.gle/uEC7Mo9CgJndnodp6 ๐
Don't wait! Your dream job could be waiting for you. ๐ผโจ
#ReferralProgram #CareerOpportunity #SuccessAwaits
Our referral program is here to help you shine.
๐ Share your profile with us, and our dedicated team will personally refer you to trusted and genuine companies.
Rest assured, we won't share your profile with just anyone. ๐ โโ๏ธ We thoroughly verify the recruiters to ensure you don't receive any spam in your inbox. ๐
Get ready to take that next big step in your career!
๐ All the best.
Apply for a referral using the link below:
๐ https://forms.gle/uEC7Mo9CgJndnodp6 ๐
Don't wait! Your dream job could be waiting for you. ๐ผโจ
#ReferralProgram #CareerOpportunity #SuccessAwaits
Exciting news! Another member has received an offer from PwC, one of the Big 4 firms. Congratulations! ๐ฅณ
If you're preparing for job interviews and need guidance or a mock interview, let's schedule a 1:1 call. I'm here to help you succeed!
๐๐
https://topmate.io/Roshan
๐๐
---
If you're preparing for job interviews and need guidance or a mock interview, let's schedule a 1:1 call. I'm here to help you succeed!
๐๐
https://topmate.io/Roshan
๐๐
---
CHALLENGE
const arr = [1, 2, 3, 4, 5];
const sliced = arr.slice(1, 3);
const spliced = arr.splice(1, 3);
console.log(sliced, spliced, arr);
Choose the correct answer
Anonymous Quiz
19%
[1,2], [1,2,3], [1,5]
25%
[1,2,3], [2,3,4], [1,5]
47%
[2,3], [2,3,4], [1,5]
8%
[2,3], [2,3,4], [1,4]