// console 控制台
document.write(6666);
document.write('6666');
// console 控制台
console.log(666); // 蓝色的数字
console.log('666'); // 黑色的字符串
console.log(true); // 蓝色的布尔值
console.log('hello world');
console.log('<h1>hi</h1>');