hello JSON.js 389 B

123456789101112131415161718192021
  1. /*
  2. hello JSON.js
  3. You can add this script to Serverless WebApp
  4. and visit the API endpoint generated to see
  5. the code generated JSON file.
  6. */
  7. var myObject = {
  8. "name": "Aroz Zoraxy",
  9. "age": 17,
  10. "interests": ["cats", "programming"],
  11. "workexp": {
  12. "programmer": {
  13. "start": 2016,
  14. "end": 2023
  15. }
  16. }
  17. }
  18. sendJSONResp(myObject);