Skip to content Skip to sidebar Skip to footer
Showing posts with the label Ecmascript 6

Difference Between Classical Inheritance And Prototype Inheritance

I found this definition here : https://medium.com/javascript-scene/10-interview-questions-every-jav… Read more Difference Between Classical Inheritance And Prototype Inheritance

Does Webpack Make Es6 Modules Compatible With Es5 Browsers?

If I use an ES6 import in a JS file like: import { tempates } from './templates.js'; webpa… Read more Does Webpack Make Es6 Modules Compatible With Es5 Browsers?

React Native : Access Component State Inside A Static Function

I have a component defined like this export class A extends Component{ constructor(props){ … Read more React Native : Access Component State Inside A Static Function

Reactjs Import Component Outside Src/ Directory

I have two react apps(A-app, B-app). I need to import one component from A-app to B-app. But when I… Read more Reactjs Import Component Outside Src/ Directory

Does Es6 Const Affect Garbage Collection?

In Kyle Simpson's new title, You don't know JS: ES6 and beyond, I find the following snippe… Read more Does Es6 Const Affect Garbage Collection?

Understanding Es6 Modules

Please can someone confirm my understanding of ES modules? In javascripts/bar.js: var foo = 2; exp… Read more Understanding Es6 Modules