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