+ 2
[Solved] What are ES6 and DOM has todo in Javascript? are they both frameworks like Node.js or React.js?
I'm new in Javascript and did learn a few basic things for now. So, I searched further in the sololearn Javascript course and collided these two modules that I mentioned above. that brings me question about what these two hold in Javascript and what they can do if we learn it? My WildGuess says these two are frameworks.
3 Respostas
+ 4
ES6 is simply a web standard specification for JavaScript that specifies how browsers should interpret JavaScript. ES6 was quite a game changer as it introduced many new features like let, const, classes and arrow functions to JavaScript.
The DOM is the representation of HTML nodes in JavaScript. It's not a framework it's built into JavaScript by default. With the DOM you can edit the HTML of a webpage using JavaScript.
+ 3
Neither Node nor React are frameworks.
+ 1
Neither ES6 and DOM are frameworks.
ES6(EcmaScript 6) is like an upgraded version of javascript(ES5) which allows for much more improved experience. DOM(Document Object Model) is a model or method in which javascript communicates or relates with HTML elements.