W3cubDocs

/Web APIs

CloseEvent: wasClean property

The wasClean read-only property of the CloseEvent interface returns true if the connection closed cleanly.

Value

A boolean value. True if the connection closed cleanly, false otherwise.

Examples

The following example prints the value of wasClean to the console.

js

WebSocket.onclose = (event) => {
  console.log(event.wasClean);
};

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
wasClean 15 12 8 10 12.1 6 4.4 18 8 12.1 6 1.0

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CloseEvent/wasClean