You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
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.
JavaScript Basic Syntax
// variable declarevarname="Samiur Rahman Mukul";constdegree="B.Sc. Engineering in CSE";letage=22;// simple function declarefunction(){console.log("Hello World!");};// arrow function declare (ES6 feature)constaboutMe=(name,age,degree)=>{console.log(`Name:${name} \n Education:${degree} \n Age:${age}`);};