আজ থেকেই আপনার ভাষা শেখার যাত্রা শুরু করুন। আপনি যদি নতুন হন অথবা
আপনার দক্ষতা বাড়াতে চান, আমাদের Interactive Lessons আপনাকে নিয়ে যাবে
অন্য একটি Level এ
Let's Learn Vocabularies
আপনি এখনো কোনো Lesson Select করেন নি
একটি Lesson Select করুন।
Frequently Asked Questions
1.The difference between var, let, and const ?
Answer: Var is function-scoped and
can be redeclared or updated, while let and const are block-scoped.
let allows reassignment, but const does not.
2. The difference between map(), forEach(), and filter() ?
Answer: map() and filter() return new
arrays, while forEach() doesn’t. map() transforms elements, and
filter() selects elements based on a condition.
2. Explain arrow functions and how they are different from regular
functions ?
Answer: Arrow functions have a
shorter syntax and don’t bind their own this, arguments, or super.
They’re best for simple callbacks, while regular functions have
their own this context.
2. How JavaScript Promises work ?
Answer: JavaScript Promises handle
asynchronous operations, representing a value that may be available
now, later, or never. They have three states pending, fulfilled, and
rejected managed using .then(), .catch(), and .finally().
5. how closures work in JavaScript ?
Answer: Closures allow a function to
access variables from its outer scope, even after that scope has
finished executing. They help in data privacy and maintaining state
between function calls.