function assert(value1, value2) {
  if (value1) {
    console.log(value2);
  }
}

function isNimble() {
  return true;
}
assert(typeof window.isNimble === "function", "is isNimbl() defined");
assert(isNimble.name === "isNimble", "isNimble() has a name");

var canFly = function() {
  return true;
};
assert(typeof window.canFly === "function", "canFly() defined");
assert(canFly.name === "", "canFly() has no name");

window.isDeadly = function() {
  return true;
};
assert(typeof window.isDeadly === "function", "isDeadly() defined");
assert(isDeadly.name === "isDeadly", "isDeadly() has a name");

function outer() {
  assert(typeof inner === "function", "inner() in scope before declaration");
  function inner () {}
  assert(typeof inner === "function", "inner() in scope after declaration");
  assert(window.inner === undefined, "inner() not in global scope");
}

outer();
assert(window.inner === undefined, "inner() stilll not in global scope");


window.wieldsSword = function swingsSword() { return true; };
assert(window.wieldsSword.name === 'swingsSword', "wieldSword's real name is swingsSword");
"is isNimbl() defined"
"isNimble() has a name"
"canFly() defined"
"canFly() has no name"
"isDeadly() defined"
"inner() in scope before declaration"
"inner() in scope after declaration"
"inner() not in global scope"
"inner() stilll not in global scope"
"wieldSword's real name is swingsSword"

 

相关文章:

  • 2022-03-08
  • 2022-12-23
  • 2021-04-19
  • 2021-08-03
  • 2022-02-04
  • 2022-01-14
猜你喜欢
  • 2021-10-19
  • 2022-12-23
  • 2022-12-23
  • 2021-05-22
  • 2021-10-30
  • 2021-05-17
相关资源
相似解决方案