Met Console Warn
# HTML DOM console.warn() Method
[ Console Object](#)
## Example
Output a warning message to the console:
console.warn("Tutorial! This is a warning message");
[Try it Β»](#)
* * *
## Definition and Usage
The console.warn() method is used to output a warning message to the console.
This method is helpful for testing during the development process.
**Note:** To test this method, the console needs to be visible (press F12 in the browser to open the console).
* * *
## Syntax
console.warn(message)
* * *
## Browser Support
The numbers in the table specify the first browser version that fully supports the method.
| Method | | | | | |
| --- | --- | --- | --- | --- | --- |
| console.warn() | Yes | 8.0 | 4.0 | Yes | Yes |
* * *
## Parameter Description
| Parameter | Type | Description |
| --- | --- | --- |
| _message_ | String or Object | Required. The message to display on the console. |
* * *
## More Examples
## Example
Use an object as the warning message output:
var myObj = {name : "", site : "www."}; console.warn(myObj);
[Try it Β»](#)
## Example
Use an array as the warning message output:
var myArr = ["Google", "Taobao", "Tutorial", "Facebook"]; console.warn(myArr);
[Try it Β»](#)
[ Console Object](#)
YouTip