TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. TypeScript tutorial in Visual Studio Code Static vs Dynamic typed language Static Typing Static typed programming languages are those in which variables need not be defined before they’re used. This implies that static typing has to do with the explicit declaration (or initialization) …
Tag Archives: JavaScript
JavaScript Advanced guide
???? TABLE OF CONTENTS ⇨ JS ES5 ⇨ JS ES6⇨ JS Advanced functions⇨ JS Advanced objects⇨ Advanced loops⇨ JS ES7⇨ JS ES8⇨ JS ES10⇨ JS Debugging⇨ JS Modules⇨ JS JSON-AJAX⇨ JS Promises⇨ JS ES8-ASYNC AWAIT⇨ JS ES9 Before diving in each topic, take a look at Javascript versions & the browser supports. If you’re interested …
jQuery Basics
What is jQuery? jQuery is a lightweight, “write less, do more”, JavaScript library. The purpose of jQuery is to make it much easier to use JavaScript on your website. jQuery takes a lot of common tasks that require many lines of JavaScript code to accomplish, and wraps them into methods that you can call with …
JavaScript HTML DOM
With the HTML DOM, JavaScript can access and change all the elements of an HTML document. The HTML DOM (Document Object Model) When a web page is loaded, the browser creates a Document Object Model of the page. The HTML DOM model is constructed as a tree of Objects: With the object model, JavaScript gets …
JavaScript Basics guide
???? TABLE OF CONTENTS ⇨ JS Variables⇨ JS Data Types⇨ JS Operators⇨ JS Conditions⇨ JS Functions⇨ JS Data Structures: Arrays⇨ JS Data Structures: Objects⇨ JS Loops JS Variables You can refer to this tutorial to understand the variables in Javascript.JavaScript Variables W3SchoolIn modern versions of JavaScript, new keywords for creating variables that work somewhat differently …