# 这是单行注释 _console.log("hello") # 这也是单行注释 ''' 多行注释使用三个单引号 可以跨越两行 ''' _console.log("hello") """ 多行注释使用三个双引号 可以跨越两行 """ _console.log(1 + 2)