html DevTools调试器测试用例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html DevTools调试器测试用例相关的知识,希望对你有一定的参考价值。

// jshint esversion: 6

let rollDie = function() {
  return Math.floor(Math.random() * 6 + 1);
};

//return the number of rolls to hit double n's
let rollDoubles = function(n) {
  let rollCount = 0,
    d1,
    d2;

  //roll until double n's
  do {
    d1 = rollDie();
    d2 = rollDie();
    ++rollCount;
  } while (d1 != n && d2 != n);

  return rollCount;
};

let n = prompt("enter n (1..6)");
alert(`Double ${n}'s in ${rollDoubles(n)} rolls.`);
console.log(`Double ${n}'s in ${rollDoubles(n)} rolls.`);
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8" />
  <title>Doubles Debug</title>
</head>

<body>
  <h2>Doubles Debug Demo</h2>
  <p>Reload the page to Run the Code.</p>
  <script src="rollDoubles.js"></script>
</body>

</html>

以上是关于html DevTools调试器测试用例的主要内容,如果未能解决你的问题,请参考以下文章

作为测试和开发调试的工具,你真的了解浏览器开发工具DevTools吗?

作为测试和开发调试的工具,你真的了解浏览器开发工具DevTools吗?

作为测试和开发调试的工具,你真的了解浏览器开发工具DevTools吗?

爬虫工程师应该掌握的技能Chrome Devtools 高级调试指南(新)

如何为Chrome的NodeJS专用DevTools添加扩展

Vuetify调试工具vue-devtools安装