JavaScript Basic¶

IJavascript is a javascript kernel for the Jupyter notebook. Other available Jupyter kernels can be found here.

# Install a javascript kernel for the Jupyter notebook
npm install -g ijavascript
ijsinstall
In [2]:
const a = 1
const b = 2
console.log(a+b)
3