Es6 Glossary
Browse 3 es6 terms defined in plain English, from the cultural dictionary of computing.
3 Es6 Terms
- Proxy Object
- In JavaScript, an object created with new Proxy(target, handler) that wraps another object and intercepts fundamental operations — such as property access,...
- Template Literal
- A JavaScript string delimited by backticks (`) that supports embedded expressions via ${...} interpolation, multi-line content without escape sequences, and...
- Temporal Dead Zone
- The region in a JavaScript scope between the start of the block and the point where a let or const variable is declared, during which any reference to that...
Related Topics
- Javascript (3 terms in common)
- Strings (1 terms in common)
- Scoping (1 terms in common)
- Metaprogramming (1 terms in common)