global-name-exists.js 175 Bytes Raw Blame History Permalink 1 2 3 4 5 6 "use strict"; // unclear on whether it should be an error to redefine global names on top-level // for now, we allow it let name = "asdf"; let console = 3; let undefined = 5;