demo.html 647 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="ru">
  3. <head><meta charset="utf-8"></head>
  4. <body>
  5. <p><input id="str" placeholder="Строка"></p>
  6. <p><input id="nnc" value="0"></p>
  7. <p><input id="dur" value="0 ms"></p>
  8. <p><button type="button" onclick="goPow()">Go!</button></p>
  9. <script src="pow16.js"></script>
  10. <script>"use strict";
  11. const goPow = () => {
  12. let str = document.querySelector("#str").value;
  13. let tm = (new Date()).getTime();
  14. let res = pow16(str);
  15. let dur = (new Date()).getTime() - tm;
  16. document.querySelector("#nnc").value = res;
  17. document.querySelector("#dur").value = dur + " ms";
  18. }
  19. </script>
  20. </body>
  21. </html>