[Javascript] Using console.count to Count Events时间:2023-03-10 05:54:54 Learn how to user console.count in order to log out how many times a given thing has happened. for(var i = ; i < ; i++){ var num = Math.random() * ; if(num > ){ console.count("Greater than 50"); }else{ console.count("less than 50"); } }