English is Easy!!

আজ থেকেই আপনার ভাষা শেখার যাত্রা শুরু করুন। আপনি যদি নতুন হন
অথবা আপনার দক্ষতা বাড়াতে চান, আমাদের Interactive Lessons
আপনাকে নিয়ে যাবে অন্য একটি Level এ


Let's Learn Vocabularies

আপনি এখনো কোন লেসন সিলেক্ট করেননি

একটি Lesson Select করুন।

Frequently Asked Questions

1.what is the difference between var,let,const?
Var- It is a global scope and Function-scoped, can be redeclared, hoisted.
let- Block-scoped, cannot be redeclared, hoisted but with a "temporal dead zone.
const- Block-scoped, cannot be redeclared or reassigned, hoisted but with a "temporal dead zone.
2.What is the difference between map(),forEach(),and filter()?
map()-Transforms each element in an array and returns a new array with the transformed values.
forEach()- Performs an action on each element, but does not return anything. It’s for side effects (e.g., logging). filter()- Filters elements based on a condition and returns a new array containing only the elements that meet the condition.
3.What are arrow functions,and how are they different from regular functions ?
In JavaScript, arrow functions are a concise way of writing functions.
4.How do JavaScript Promise Work?
Promise work 3 sub - Pending,Rejected,fulfilled
5.How Does closure work in JavaScript?
A closure is a function that references variables from its outer function and retains the values of those variables, even after the outer function has completed.