Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /console/console-log-symbol.any.html - WPT Dashboard Interop Dashboard
- /console/console-log-symbol.any.shadowrealm-in-dedicatedworker.html - WPT Dashboard Interop Dashboard
- /console/console-log-symbol.any.shadowrealm-in-shadowrealm.html - WPT Dashboard Interop Dashboard
- /console/console-log-symbol.any.shadowrealm-in-sharedworker.html - WPT Dashboard Interop Dashboard
- /console/console-log-symbol.any.shadowrealm-in-window.html - WPT Dashboard Interop Dashboard
- /console/console-log-symbol.any.worker.html - WPT Dashboard Interop Dashboard
- /console/console-log-symbol.https.any.shadowrealm-in-audioworklet.html - WPT Dashboard Interop Dashboard
- /console/console-log-symbol.https.any.shadowrealm-in-serviceworker.html - WPT Dashboard Interop Dashboard
// META: global=window,dedicatedworker,shadowrealm
"use strict";
test(() => {
console.log(Symbol());
console.log(Symbol("abc"));
console.log(Symbol.for("def"));
console.log(Symbol.isConcatSpreadable);
}, "Logging a symbol doesn't throw");