Below are the list of placeholders available from console object,
1. %o — It takes an object,
2. %s — It takes a string,
3. %d — It is used for a decimal or integer These placeholders can be represented in the console.log as below
1 2 3 | const user = { "name":"John", "id": 1, "city": "Delhi"}; console.log("Hello %s, your details %o are available in the object form", "John", user); // Hello John, your details {name: "John", id: 1, city: "Delhi"} are available in object |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.