Node Fundamentals in JavaScript
Node VM
- v8, Default, Single-Threaded
- Chakra by Microsoft, powers Edge browser
VM executes the Java script code. So, v8 actually executes your JS code when you run a node application.
v8 Feature Groups
- Shipping - Available by default
- Staged - Not quite ready yet. flag
--harmony
- In-Progress - Less stable.
You can see the list of all group features by
Using Variables In Node js
In node js you can also assign or use Variables , but here in this example we are discussing about JavaScript with Node js
Here is an Example
to make an output use this command :: node ----.js
Using Conditions in Node js
Using for loops in Node js