标签:conf lock 代码 ring js代码 模型 com 引用 his
var obj={
a:10,
b:20
};
?
function fn(){
obj.a=30;
}
fn();
console.log(obj.a);
//输出结果为:30
var obj={
a:10,
b:20
};
?
function fn(obj){
//var obj=阿尔法
obj.a=30;
}
fn(obj);
console.log(obj.a);
//输出结果为:30
var obj={
a:10,
b:20
};
?
function fn(obj){
//var obj=阿尔法
obj={
a:30,
b:20
};//var obj=贝塔
}
fn(obj);
console.log(obj.a);
//输出结果为:10
var fn = function() {
console.log(‘hello ,world‘);
var a = 30;
console.log(a / 100);
};
?
fn();
?
setTimeout(fn, 2000);
var timer = setInterval(function() {
console.log(‘hello‘);
}, 1000);
setTimeout(function() {
clearInterval(timer);
}, 5000);
var num = prompt(‘请输入数字‘);
console.log(‘hello‘);
alert(‘hello‘);
console.log(‘hello, world‘);
var result = confirm(‘yes or no‘);
console.log(‘hello‘);
console.log(result);
confirm prompt alert //这3个语句都是同步语句,会阻塞js代码的执行
标签:conf lock 代码 ring js代码 模型 com 引用 his
原文地址:http://www.cnblogs.com/xingxing88/p/5990591.html