Explorar o código

<HW_Замыкания>

Mark %!s(int64=2) %!d(string=hai) anos
pai
achega
eac22966e2
Modificáronse 1 ficheiros con 11 adicións e 0 borrados
  1. 11 0
      09/main.js

+ 11 - 0
09/main.js

@@ -0,0 +1,11 @@
+// makeProfileTimer
+function makeProfileTimer() {
+   let first = performance.now();
+   return function () {
+      let second = performance.now();
+      return second - first
+   };
+}
+var timer = makeProfileTimer();
+alert("Замеряем время работы этого alert");
+alert(`${timer()} ms`);