// The "function length" in JS evaluates to the number of it's params
const sum = (a, b) => a + b;
const log = (s) => console.log(s);
const noop = () => {};
console.log(sum.length); // 2
console.log(log.length); // 1
console.log(noop.length); // 0
var x = 'Mozilla';
var empty = '';
console.log('Mozilla is ' + x.length + ' code units long');
/* "Mozilla è lungo 7 unità di codice" */
console.log('La stringa vuota ha una lunghezza di
' + empty.length);
/* "La stringa vuota ha una lunghezza di 0" */