Useful for formatting numbers. ```js function num(number, lang = 'no') { return new Intl.NumberFormat(lang).format(String(number)) } ```