JS--switch 语句

说明:js中switch语句的语法风格

function convert(x){
switch(x)
{
case "string":
document.write("string");
break;
case "number":
document.write("number");
break;
default:
document.write("null");
break;
}
}
上一篇:ASP.NET Core MVC/WebAPi 模型绑定探索


下一篇:Hibernate iterate(迭代)