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}`); };
- 1-JavaScript-Fundamental
- 2-JavaScript-Tutorial
- 3-JavaScript-Problem-Solving
- 4-JavScript-ES6-&-OOP
- 5-JS-Data-Structure-And-Algorithm
- 6-JavaScript-DOM-&-BOM
- 7-JavaScript-Async-Callback-Promise
- 8-JavaScript-API-Calling
- 9-JavaScript-JSON
- 10-JavaScript-AJAX
- 11-JavaScript-jQuery
- 12-JavaScript-More-Library
- 13-JS-Example-&-References
- 14-JavaScript-Interview-Preparation
- 15-JavaScript-Advanced-Topics
HAPPY JavaScript PROGRAMMING & WEB DEVELOPING 👩💻