Explorar el Código

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

Mark hace 2 años
padre
commit
eac22966e2
Se han modificado 1 ficheros con 11 adiciones y 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`);