02-JavaScript常见输出方式

JS中的常见输出方式

  1. 通过弹窗的形式来输出
alert('hello world');



confirm('hello world');



prompt('hello world');


  1. 通过网页内容区域的形式来输出
document.write('hello world');


  1. 通过开发者工具控制台的形式来输出
console.log('hello world');     // 普通输出


console.warn('警告输出');
console.error('错误输出');


  • 注意点
    • 如果输出的内容不是数字, 那么必须加上单引号或者双引号
    • 在JavaScript中是严格区分大小写的, alert和Alert不是一回事
alert("hello world"); // 正确 
Alert("hello world"); // 错误
  • 在编写JavaScript代码的时候, 一定要记住在每一句代码的后面都需要添加一个分号, 并且这个分号必须是英文的分号
    • 我们发现有的时候不写分号程序也可以运行, 这并不是因为不需要分号, 而是浏览器自动帮我们添加了分号,浏览器自动添加分号会消耗一定的性能, 并且有可能会添加错误
  • JS中会忽略多个空格和换行
alert
(
"hello world"
);  

你可能感兴趣的:(02-JavaScript常见输出方式)