欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js函数的创建方式解析

程序员文章站 2022-06-26 09:20:59
函数声明 // 函数声明 function aaa(){ console.log('1'); } 函数表达式 // 函数表...
函数声明
// 函数声明
	function aaa(){
		console.log('1');
	}
函数表达式

	// 函数表达式
	// 1.命名函数表达式
	var testa=function abc(){
		console.log(1);
	}
	// 2.匿名函数表达式  --最常用简称函数表达式
	var testb=function(){
		console.log(2);
	}

testa和testb的区别:1.其实abc这个名字是没有作用的,调用testa会打印1,但是调用abc会提示abc未定义。

2.testa.name打印的是 abc,testb.name打印的是testb;