#javascript
Read more stories on Hashnode
Articles with this tag
Error Handling Error handling is the way of managing errors and dealing with unexpected situations in a software application. Errors can be...
Object JavaScript's data types can be broadly classified into primitive types and object types. Primitive types represent a single value, and the...
Generator Async Function // async + regular function async function funcName() {} // async + anonymous function async function() {} // async +...
Promise Objects that help handle asynchronous operations in a synchronous-like manner One of resolve or reject must be called executor: executing a...
04/05/23 ยท JS Part 3 HW HW 1 // When the code is executed, print "Passed ~ " by writing getAged() var user = { name: "john", age: 20, }; var...
DOM DOM: Document Object Model JavaScript is a light-weight language built to create a web page dynamically running on the browser How the web page...