๐ฉ7๐1
  console.log( !!null, !!'',  !!1 )
  Anonymous Quiz
    24%
    false true false
      
    35%
    false false true
      
    19%
    false true true
      
    21%
    true true false
      
    ๐1
  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
      
    ๐16
  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
      
    16%
    Error
      
    ๐4
  ๐ 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
โค2๐2
  ๐24
  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
๐๐
---
๐8โค2
  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);
๐5
  Choose the correct answer 
  Anonymous Quiz
    18%
    [1,2], [1,2,3], [1,5]
      
    26%
    [1,2,3], [2,3,4], [1,5]
      
    47%
    [2,3], [2,3,4], [1,5]
      
    9%
    [2,3], [2,3,4], [1,4]
      
    ๐12โค1
  Hey folks! ๐ฅณ
Iโm thrilled to share a new testimonial from Nausheen!
These kind words mean the world to me, knowing that Iโve made a difference in someoneโs journey. It truly makes all the hard work and dedication worthwhile.
๐ฅณ If youโre feeling stuck or need a confidence boost for your next interview, Iโm here to help! ๐ช
๐๐ป Book a 1:1 session for #Mock Interviews, #Career Guidance, or grab some Interview Q/A E-books by clicking the link below ๐๐ป
๐๐ป๐๐ป https://topmate.io/Roshan ๐๐
Letโs get you interview-ready and crush those fears! ๐
  Iโm thrilled to share a new testimonial from Nausheen!
These kind words mean the world to me, knowing that Iโve made a difference in someoneโs journey. It truly makes all the hard work and dedication worthwhile.
๐ฅณ If youโre feeling stuck or need a confidence boost for your next interview, Iโm here to help! ๐ช
๐๐ป Book a 1:1 session for #Mock Interviews, #Career Guidance, or grab some Interview Q/A E-books by clicking the link below ๐๐ป
๐๐ป๐๐ป https://topmate.io/Roshan ๐๐
Letโs get you interview-ready and crush those fears! ๐
Guess the output.
let valueA = [5]; let valueB = [6]; console.log(valueA+valueB);
  let valueA = [5]; let valueB = [6]; console.log(valueA+valueB);
Anonymous Quiz
    32%
    11
      
    26%
    Error
      
    9%
    Null
      
    33%
    56
      
    ๐12
  โโจ๐ Happy New Year 2025, everyone! ๐โจ
Thank you for all your support this past year. Letโs make 2025 even better with more learning, growth, and success in cracking those frontend interviews! ๐๐ป
Stay tuned for exciting content to help you level up your skills and achieve your goals. ๐
Hereโs to an amazing year ahead! ๐ Keep learning, keep coding! ๐กโ
๐๐ปTo book an 1:1 Mock Interview or Download ReactJs interview Preparation E-Book
Must visit ๐๐ป https://topmate.io/Roshan
  
Thank you for all your support this past year. Letโs make 2025 even better with more learning, growth, and success in cracking those frontend interviews! ๐๐ป
Stay tuned for exciting content to help you level up your skills and achieve your goals. ๐
Hereโs to an amazing year ahead! ๐ Keep learning, keep coding! ๐กโ
๐๐ปTo book an 1:1 Mock Interview or Download ReactJs interview Preparation E-Book
Must visit ๐๐ป https://topmate.io/Roshan
โค6๐1
  ๐11โค1
  let fruits = ['Apple', 'Banana'];
console.log(fruits[2]);
  console.log(fruits[2]);
Anonymous Quiz
    8%
    Banana
      
    3%
    Apple
      
    74%
    Undefined
      
    16%
    throws an Error
      
    console.log(โ2โ+1+1)
console.log(2+1+โ1โ)
  console.log(2+1+โ1โ)
Anonymous Quiz
    5%
    31, 31
      
    8%
    4, 4
      
    45%
    211, 31
      
    7%
    NaN, NaN
      
    35%
    22, 31
      
    ๐3โค1
  Which method is used to convert a JSON string into a JavaScript object?
  Anonymous Quiz
    36%
    JSON.stringify()
      
    42%
    JSON.parse()
      
    6%
    JSON.convert()
      
    16%
    JSON.toObject()
      
    ๐9