|
|
|
|
|
by mariusasdf
4403 days ago
|
|
This reasoning seems fundamentally confused, so I feel like clarifying some concepts: On Runnable you can create basic client-side JavaScript files to be run in the browser (without jQuery) and do window and DOM manipulations. Node.js isn't a framework for the browser (like jQuery), but a server application platform (with a bunch of objects and functions). "Pure js" doesn't exist as an environment. It runs within a parent environment (e.g. a browser or a server) and manipulates the global objects in that environment. JavaScript is just a language specification, and can be implemented in any environment. (For instance, it's implemented in Adobe Illustrator.) |
|