Guest User

Untitled

a guest
Oct 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. define([], function() {
  2. "use strict";
  3. return {
  4. main: function() {
  5. print("Hello wilton!");
  6. var bb = "{ \"abc\": 1,\n \"foo\": \"abcdef\" }";
  7. print('___QQQQ___' + bb);
  8. print('___QQQQ___' + JSON.stringify(bb));
  9. print('___QQQQ___' + JSON.parse(bb));
  10. }
  11. };
  12. });
Add Comment
Please, Sign In to add comment