JavaScript has somewhat of a quirky nature to it, and I don't agree that it is necessarily easier than learning PHP. It is, however, more universal than PHP, since it can be run anywhere that there is a browser, which is pretty much on every computer in the world. This makes JavaScript the most widely spread programming language in the world.
The one thing that is pretty easy to learn about JavaScript is the way it is used as references to objects in the browser.
If you are looking for a solid foundation from which to study PHP, JavaScript simply isn't going to give it to you. There are many differences between the languages, such as the scoping of variables, and the rules regarding how functions are formed. There are similar structures, however, such as the "C-style" brackets that enclose controls statements (if, for, switch, else, etc.) I would say that the procedural ability of PHP is much stronger, as there are more functions for dealing with arrays, objects, etc than in JS. For its objects, JavaScript uses something known as "prototypal inheritance", which is unique to it, while being much different than classical systems. Prototypal inheritance is great for referencing browser objects, however.
JavaScript is so expressive, that you will be able to use many of its concepts intuitively, without really using it as a programming language at all. I've even had a programmer tell me that he didn't consider JavaScript to be a programming language at all. Although I disagree, his statement had some merit to it. JS belongs in a category by itself.
OK, now that I have written almost a whole essay on the subject, let me say that
there are not very many good books on JavaScript. The reason there are so many bad books is that the standard for JavaScript has not been very well defined, and when it has been defined (as ECMA script), often the standard has been a hindrance rather than a help.
The book that has been a standard throughout the years is this one:
javascript: The Definitive Guide
This is probably the best all-around book about the subject, though it doesn't cover some advanced subjects. It is probably better to learn the advanced subjects online or with a book that is just about JavaScript as an object-oriented language, such as the one by Douglas Crockford or the upcoming book by John Resig.