Get Performance of Your Code

let startAt = performance.now();

FunctionCall();

let endAt = performance.now();

console.log('${endAt - startAt}');