# Problem: Error web console - Samsung Android 2.3
Uncaught SyntaxError: Unexpected token new at http://huypv.net/js/profile.js?v=130701:103
Uncaught TypeError: Cannot read property 'view' of undefined at http://huypv.net/js/view.js?v=130701:12
# Wrong code
var x = {"new": "newValue"};
var y = x.new;
alert('OK?'); // will not execute
# Reason: new is keyword
# Fix code
var x = {"new": "newValue"};
var y = x['new'];
alert('OK?'); // it works
Title:
Android Application - Web Console - Uncaught SyntaxError: Unexpected token
Description:
# Problem: Error web console - Samsung Android 2.3 Uncaught SyntaxError: Unexpected token new at http://huypv.net/js/profile.js?v=130701:10...
...
Rating:
4