// the `: number` here specifies that this function returns a number
function getTime(): number {
return new Date().getTime();
}
console.log(getTime());
1648464745471