Hi Everyone! I am really going to get in the habit of asking a lot of questions as I am thirsty to learn. I have read a lot of blogs, articles and tutorial talking about ECMAScript in relation to JavaScript. While I have googled a lot to know the dif...
Hi everyone, Lately I've been working on a lightweight JavaScript framework called PlazarJS. It is an OOP versatile framework built to enrich the developer experience in terms of simplicity and speed of application development. It can be used to crea...
I wanted to do a develop an application in React. And also a Android Application of the same application using ReactNative. So should I care learning for ECMAScript? And if not, Kindly link a book which I can study for Javascript(short introduction...
I faced some code that uses lodash/fromPairs to build an indexed object: import fromPairs from "lodash/fromPairs"; function lodashReduce(arr) { return fromPairs(arr.map(item => [item, `my item is: ${item}`])); } But I know that ES6 has syntax that...
In the long run is it valuable to learn typescript still considering that es6 exists. I know es6 still doesn't have a lot of support by browsers, but I assume within a couple of years that will change and for now there's babel at least. I'm a softwar...
First: let variable = "./components/" import(`${variable}Home`).then(module => /*works*/) Second (wrong): Why is this not possible ? const stringVar = "./components/Home" import(stringVar).then(module => /* doesn't work */)