Node.js console.log vs console.info

后端 未结 10 1189
青春惊慌失措
青春惊慌失措 2021-01-30 15:51

What is the benefit of using console.log vs console.info? Or any of the other console commands for that matter?

console.info(\"info\")         


        
10条回答
  •  难免孤独
    2021-01-30 16:21

    console.log() is shorter than console.info()

    They're the same thing, and that's the only advantage.

提交回复
热议问题