//日志输入
console.log('hello world');
console.log('你好世界');
//错误输出
console.error('你的代码在地21行有错误')
console.error('There is a little problem with your line 50, but not much')
// 警告输入
console.warn('你的第50行代码有一点问题,但是问题不大');
console.warn('There is a little problem with your line 50, but not much');
//分组输出
console.group('美女四姐妹')
console.log('老大')
console.log('老二')
console.log('老三');
console.log('老小');
console.groupEnd();
console.log('亲爱的乐乐')
前端第一周,Javascript--控制台输出语句 copy
最新推荐文章于 2025-03-15 00:27:53 发布