Console.log 随机数

Console.log on a random number

如何创建一个单独的函数,如果我的 randNum = 7,它将 console.log "hello"。仅使用 javascript.

谢谢。

function randomNumber() {
        var randNum = Math.floor(Math.random() * (25)) + 1;
        console.log(randNum);

      } 
  function randomNumber() {
    var randNum = Math.floor(Math.random() * (25)) + 1;
    if(randNum == 7){
      hello();
    }

  }

 function hello(){
   console.log('hello');
 }

将控制台日志包装在一个 if 语句中,该语句检查生成的随机数的值。

新函数将有控制台日志,并在 if 语句正确时调用

function randomNumber() {
    var randNum = Math.floor(Math.random() * (25)) + 1;
      hello(randNum);
  }

 function hello(randNum){
   if(randNum == 7)
    console.log('hello');
   }
}

因此您将 randNum 变量传递给它将检查的函数

function randomNumber() {

    var randNum = Math.floor(Math.random() * (25)) + 1;

    return randNum;

}

function logRandomNumber() {

    var randNum = randomNumber();

    if(randNum == 7) { 

        console.log('hello');

    }

}

logRandomNumber();
function randomNumber() 
{
        var randNum = Math.floor(Math.random() * (25)) + 1;
        (randNum==7)?console.log("hello"):console.log(randNum); 

}

// 如果你需要其他功能

function randomNumber1() 
{
        var randNum = Math.floor(Math.random() * (25)) + 1;
        if(randNum===7)
          SeparateFunc();


}

function SeparateFunc(){
console.log("hello");

}

JSFiddle : https://jsfiddle.net/y918ndu0/