fa
Feedback
Full Stack Camp

Full Stack Camp

رفتن به کانال در Telegram

Fullstack Camp | Learn. Build. Launch. Join us for a hands-on journey through HTML, CSS, JavaScript, React, Node.js, Express & MongoDB — all in one place. Use this bot to search for lessons. @FullstackCamp_assistant_bot DM: @Tarikey6

نمایش بیشتر
کشور مشخص نشده استدسته بندی مشخص نشده است
235
مشترکین
-124 ساعت
اطلاعاتی وجود ندارد7 روز
+330 روز
آرشیو پست ها
24. Which keyword is used to inherit from another class?
Anonymous voting

23. What will this output? class Animal { constructor(name) { this.name = name; } } const a = new Animal("Dog"); console.log(typeof a);
Anonymous voting

22. Which is the correct way to declare a class in JS?
Anonymous voting

21. What will this output? Promise.resolve(1) .then(x => x + 1) .then(x => { throw new Error("Oops") }) .catch(err => 999) .then(x => console.log(x));
Anonymous voting

20. Which one is NOT a valid Promise state?
Anonymous voting

19. What does the spread operator (...) do in arrays?
Anonymous voting

18. What will this print? const obj = { name: "Code", greet: () => console.log(this.name) }; obj.greet();
Anonymous voting

17. What will this output? for (var i = 0; i < 3; i++) { setTimeout(() => console.log(i), 100); }
Anonymous voting

16. What will this output? for (let i = 0; i < 3; i++) { setTimeout(() => console.log(i), 100); }
Anonymous voting

15. Which is the correct way to fetch API data in modern JS?
Anonymous voting

14. What is the output?
Anonymous voting

13. Which keyword is used inside a class to create objects?
Anonymous voting

12. What does JSON stand for?
Anonymous voting

11. What is a closure in JS?
Anonymous voting

10. What will this print? setTimeout(() => console.log("Hello"), 0); console.log("World");
Anonymous voting

9. Which array method is a higher-order function?
Anonymous voting

8. Which of these creates a copy of an array?
Anonymous voting

7. What does this refer to inside a regular function (not strict mode)?
Anonymous voting

6. Which of these is a function expression?
Anonymous voting

5. Which loop is guaranteed to run at least once?
Anonymous voting