11cb0ef41Sopenharmony_ci<!DOCTYPE html> 21cb0ef41Sopenharmony_ci<html> 31cb0ef41Sopenharmony_ci<head> 41cb0ef41Sopenharmony_ci<title>Console String Format Specifier on Symbols</title> 51cb0ef41Sopenharmony_ci<meta name="author" title="Dominic Farolino" href="mailto:domfarolino@gmail.com"> 61cb0ef41Sopenharmony_ci<meta name="assert" content="Console format specifiers on Symbols"> 71cb0ef41Sopenharmony_ci<link rel="help" href="https://console.spec.whatwg.org/#formatter"> 81cb0ef41Sopenharmony_ci</head> 91cb0ef41Sopenharmony_ci<body> 101cb0ef41Sopenharmony_ci<p>Open the console inside the developer tools. It should contain five entries, each of which are:</p> 111cb0ef41Sopenharmony_ci<p><code>Symbol(description)</code></p> 121cb0ef41Sopenharmony_ci 131cb0ef41Sopenharmony_ci<script> 141cb0ef41Sopenharmony_ciconsole.log("%s", Symbol.for("description")); 151cb0ef41Sopenharmony_ciconsole.dirxml("%s", Symbol.for("description")); 161cb0ef41Sopenharmony_ciconsole.trace("%s", Symbol.for("description")); 171cb0ef41Sopenharmony_ciconsole.group("%s", Symbol.for("description")); 181cb0ef41Sopenharmony_ciconsole.groupEnd(); 191cb0ef41Sopenharmony_ciconsole.groupCollapsed("%s", Symbol.for("description")); 201cb0ef41Sopenharmony_ciconsole.groupEnd(); 211cb0ef41Sopenharmony_ci</script> 221cb0ef41Sopenharmony_ci</body> 231cb0ef41Sopenharmony_ci</html> 24