console.log('--------------引用训练----------------');
let a = {
name: 'asd',
age: 15
}
console.log('a1', a.name);
let b = a;
console.log('a2', a.name);
console.log('b1', b.name);
console.log('--------------引用训练2----------------');
a = {
name: 'julia',
age: 29
}
console.log('第一次a', a.age);
function change(o) {
console.log('第一次o', o.age);
o.age = 24;
console.log('第二次o,', o.age);
o = {
name: 'kath',
age: 30
}
console.log('第三次o', o.age);
return o;
}
let c = change(a);
console.log('第一次c', c.age);
console.log(' -------------- 数据类型判断 ---------------- ');
console.log('1,', typeof(1));
console.log('\'1\',', typeof('1'));
console.log('undefined,', typeof(undefined));
console.log('\'undefined\',', typeof('undefined'));
console.log('true,', typeof(true));
console.log('\'true\',', typeof('true'));
console.log(
javascript 数据判断
最新推荐文章于 2024-10-31 22:54:55 发布
本文详细探讨了JavaScript中各种数据类型的判断方法,包括基本类型与引用类型的区别、null与undefined的辨析、对象实例的检测等核心概念,旨在帮助开发者提升在JavaScript编程中的数据处理能力。
摘要由CSDN通过智能技术生成