HTML
<button type="button" onclick="alert('12 + 6 = ' + soma(12, 6));">
  Executar função
</button>
<script>
  const soma = new Function("a", "b", "return a + b");
</script>

Construtor Function()