Reference: http://electron.atom.io/docs/tutorial/quick-start/
const electron = require('electron');
const {app} = electron;
What is the difference between const var_name
and const {var_name}
?
When should I use const var_name
or const {var_name}
?