{ function fahrenheit (c) { const f = c * 9 / 5 + 32; return f; } console.log (`${fahrenheit (0)} \xB0`); } { const f = (c) => c * 9 / 5 + 32; console.log (f(100)); console.log (`100° C entspricht ${f(100)}° Fahrenheit.`); }