{"start":3,"end":1080}
fetch('/file.json').then(function(res) {return res.json();}).then(function(result) { alert(result['start']+2); });
let json = '{"start":3,"end":1080}'; json = JSON.parse(json); alert(json['start']+2); let result = '{"start":"3","end":1080}' result = JSON.parse(result); alert(result['start']+2);