{
return "pi is the floating point number " + Math.PI +
"\n but it can be representated as a String: " + String(Math.PI) +
"\n or as an integer: " + parseInt(Math.PI) +
"\n or as a fixed precision float: " + parseFloat(Math.PI).toFixed(2) +
"\n or as a Greek letter: " + "π" +
"\n or as an emoji: " + "🥧";
}