Detect when your site is visible to users
tipjs,web_developer
document.onvisibilitychange = function () {
document.visibilityState === "visible"
? (document.title = "👋 Hello")
: (document.title = "😟 Bye!");
};Có thể bạn đã miss một số snippets code
encode/decode base64 with JS
Encoding to base64 is done with the btoa command
JavaScript: async/await with forEach
JavaScript: async/await with forEach()
Random Number javascript
Random Number javascript
flatMap()
Use flatMap() creates a new array with sub-array elements flattened by specified depth.
Sự khác biệt giữa substr và substring
Sự khác biệt giữa substr() và substring() chức năng trong JS là gì?