DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

JSON Serialize — Example 155

Quick explanation + ready code for: JSON Serialize.

Common Lisp JSON Serialize Back to examples
Back to language
Syntax: JSON Serialize in Common Lisp. ID: #155

Code

const data = { id:14, ok:true };
console.log(JSON.stringify(data));

Notes

You can copy this snippet and adapt it. For advanced, add real-world inputs, edge cases, and tests.