I'm trying to use the delete navigator;
command. It even returns me true
but nothing happens in javascript to uninstall the Chrome browser. For some reason it is not working, could anyone help me?
I'm trying to use the delete navigator;
command. It even returns me true
but nothing happens in javascript to uninstall the Chrome browser. For some reason it is not working, could anyone help me?
The delete navigator;
command does not "uninstall" the browser, delete
is used to delete variables and literal object levels for example. In your case you are trying to delete the global navigator
, and it is not working because the browser does not allow you to remove this variable.