About the Code
Nearly all (over 90%) of ES2015(opens in new window) is available to use in Electron without the use of pre-processors because it's a part of V8(opens in new window) which is built into Electron.
-To illustrate this we've made use of const
, for un changing declarations; let
for scoped declarations; and template strings like: `Result is ${output}`
in the demo snippets.
To illustrate this we've made use of const
, for unchanging declarations; let
for scoped declarations; and template strings like: `Result is ${output}`
in the demo snippets.