以下功能代码需要什么?

时间:2018-09-11 03:11:50

标签: javascript

function areBothTrue(bool1, bool2) {

}

console.log(areBothTrue(true, false), '<-- should be false');
console.log(areBothTrue(true, true), '<-- should be true');

1 个答案:

答案 0 :(得分:0)

function areBothTrue(bool1, bool2) {
  return bool1 && bool2;
}