JavaScript day1(注释)
程序员文章站
2022-07-02 21:30:25
JavaScript中的注释方式有两种: 单行注释,使用 //。 // This is an in-line comment. 多行注释,以/*开始,用*/来结束。 /* This is a multi-line comment.*/ ......
javascript中的注释方式有两种:
- 单行注释,使用
//。
// this is an in-line comment.
- 多行注释,以
/*
开始,用*/
来结束。/* this is a multi-line comment.*/