Which of the following method does NOT belong to the
Console
object?<<
( ) log()
{{Incorrect because console.log()
is a valid method in the Console
object.}}
( ) debug()
{{Incorrect because console.debug()
is a valid method in the Console
object.}}
( ) error()
{{Incorrect because console.error()
is a valid method in the Console
object.}}
( ) warn()
{{Incorrect because console.warn()
is a valid method in the Console
object.}}
(x) message()
{{Correct because console.message()
is not a valid method in the Console
object.}}
||The methods console.log()
and console.debug()
are commonly used when debugging. ||