What is JavaScript ?
✨ JavaScript is a dynamic programming language that's used for web development, in web applications, for game development, and lots more. It allows you to implement dynamic features on web pages that cannot be done with only HTML and CSS.
// variable declare
var name = "Samiur Rahman Mukul";
const degree = "B.Sc. Engineering in CSE";
let age = 22;
// simple function declare
function() {
console.log("Hello World!");
};
// arrow function declare (ES6 feature)
const aboutMe = (name, age, degree) => {
console.log(`Name: ${name} \n Education: ${degree} \n Age: ${age}`);
};
HAPPY JavaScript PROGRAMMING & WEB DEVELOPING 👩💻