fork download
  1. // your code goes here
  2. var obj = {
  3. name : "test name",
  4. surname: "test surname",
  5. age: 20,
  6. dateOfBirth: "1991-01-01T16:12:00"
  7. };
  8.  
  9. print(obj.toSource());
Success #stdin #stdout 0.01s 10460KB
stdin
Standard input is empty
stdout
({name:"test name", surname:"test surname", age:20, dateOfBirth:"1991-01-01T16:12:00"})