《2018年9月29日》【连续361天】

标题:js题目练习,callee
内容:

var x = 1;
if(function f() {})
{
	x += typeof f;
}

console.log(x);

function myIsNaN(num)
{
	var ret =Number(num);
	ret += "";
	if(ret =="NaN")
	{
		return true;
	}
	else
	{
		return false;
	}
}

function test()
{
	console.log(this);
}

test();

function test1()
{
	console.log(arguments.callee);
}
//callee是函数自身引用
test1();

361day(js题目练习,callee)

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-30
  • 2021-07-23
  • 2021-05-29
  • 2021-04-26
  • 2021-11-25
猜你喜欢
  • 2021-09-30
  • 2022-12-23
  • 2021-11-22
  • 2021-12-26
  • 2021-11-16
  • 2022-02-01
相关资源
相似解决方案