Created
October 20, 2020 16:02
-
-
Save roberrrt-s/3a646ac98e68e513a60b6e92a6ec76c7 to your computer and use it in GitHub Desktop.
Revisions
-
roberrrt-s created this gist
Oct 20, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ function data() { return { data: [ { "property": "waarde", "getal": 1, "misschien": true, }, { "property": "waarden", "getal": 12, "misschien": false, } ] } } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="author" content="robert"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Data inladen zonder local server</title> </head> <body> <script src="data.js"></script> <script src="script.js"></script> </body> </html> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ var survey = data(); console.log(survey);