What is Vue.js? Vue is a progressive framework for building user interfaces. Unlike other monolithic frameworks, Vue is designed from the ground up to be…
Release Notes Latest beta version: 3.0.0-rc.10 (2020-09-03) Detailed release notes for each version are available on GitHub CDN For prototyping or learning purposes, you can…
A mixin is an abstract subclass; i.e. a subclass definition that may be applied to different superclasses to create a related family of modified classes.…
Since ES6, Class was appeared in javascript: Accompanying that, during development, there will be many cases where we find it necessary to add information or…
Starting with ECMAScript 2015, The Set object lets you store unique values of any type, whether primitive values or object references. Create a Set: Or…
Starting with ECMAScript 2015, The WeakMap object is a collection of key/value pairs in which the keys are weakly referenced. The keys must be objects…
Starting with ECMAScript 2015, The Map object holds key-value pairs and remembers the original insertion order of the keys. Any value (both objects and primitive…
Starting with ECMAScript 2015, symbol is a primitive data type, just like number and string. symbol values are created by calling the Symbol constructor or…