I was reading this excellent article on V8, Google\'s Javascript engine: https://developers.google.com/v8/design#mach_code.
At one point, they say that Javascript is
It is a scripting language because JS code is intended to be supplied and run as source code.
If the coder were to provide a compiled binary for you to execute, then it would not be a script.
Also, no matter what it does on Chrome, the same Javascript source code must also run in other platforms, which may be more or less of a traditional scripting environment. This also doesn't change the nature of the code itself of being a script.
Even if you go to the extreme of compiling it, JS is still a scripting language at heart. There are proper traditional compilers available for virtually every scripting language you can think of (Perl, PHP....); that doesn't stop them from being script languages, nor their source code from being a script.
Likewise, there are interpreters for many languages that are traditionally compiled.
Finally, the issue is further muddied by the concept of "compiling" one language into another. This has been around for a while, but the idea has really taken off with languages like Coffeescript that are intended to compile into Javascript. So what do you call the compiled Coffeescript code?
The terminology isn't really all that helpful, especially now, but the final answer to your question, in the context you're asking it, is that yes, Javascript is still a scripting language.