JavaScript Função vazia
const func = () => {};
// Or
const func = Function();
Batman
const func = () => {};
// Or
const func = Function();
function sum(a, a, c) { // !!! syntax error
'use strict';
return a + a + c; // wrong if this code ran
}