What I want to do is to use as many immutable variables as possible, thus reducing the number of moving parts in my code. I want to use \"var\" and \"let\" only when it\'s n
This is what I do:
Instead of:
function F(const a, const b, const c, const d, const e, const f, const g){ // Invalid Code // lorem // ipsum }
..Use:
function F(){const[a, b, c, d, e, f, g] = arguments; // lorem // ipsum }