The test fixture I use for this kata is pre-populated.javascript
It will compare your guess to a random number generated using:java
Math.floor(Math.random() * 100 + 1)
You can pass by relying on luck or skill but try not to rely on luck.dom
"The power to define the situation is the ultimate power." - Jerry Rubinthis
Good luck!code
var guess = 0; //編寫這部份內容以知足以下的test
//This is exactly what the real test fixture looks like. var lucky_number = Math.floor(Math.random() * 100 + 1); Test.assertEquals(guess, lucky_number, "Sorry. Unlucky this time.");
建議你們動手寫一寫,再去翻看原答案,不要被思想所束縛~ip