类的表达式写法2种写法

时间:6年前   阅读:4382

<!DOCTYPE html>    
<html>    
	<head>    
		<meta charset="UTF-8">    
		<title></title>    
	</head>    
	<body>    
		<script type="text/javascript">    
//			class dd{    
//				constructor(){    
//					this.color = '颜色';    
//					this.size = '尺寸';    
//				}    
//			}    
//			类的表达式写法(类的另一种(第2种写法))    
			let a = class dd{    
				constructor(){    
					this.color = '颜色';    
					this.size = '尺寸';    
				}    
			}    
//			let syu = new dd();    
			let syu = new a();    
//			输出结果:  颜色    
			console.log(syu.color);    
		</script>    
	</body>    
</html>

本站声明:网站内容来源于网络,如有侵权,请联系我们https://www.qiquanji.com,我们将及时处理。

微信扫码关注

更新实时通知

上一篇:linux重启命令

下一篇:新手怎么理解50ETF期权?

网友评论

请先 登录 再评论,若不是会员请先 注册