Browse Source

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

Mark 2 năm trước cách đây
mục cha
commit
eac22966e2
1 tập tin đã thay đổi với 11 bổ sung0 xóa
  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`);