Despite sharing a similar name and syntax, Java and JavaScript are quite different. However, they both have Object Oriented features.
As a JavaScript novice, the main differences that I can see between Java and JavaScript's Object Orientation is in inheritance and "class"/object description syntax.
Assuming the above is correct, would thinking about my JavaScript objects as Java objects while designing and subsequently "translating" them to JavaScript code be a good idea? My thinking is that both languages' respective objects boil down to properties and methods/functions. I don't plan to use inheritance or dynamically add properties/functions.
Would taking this approach lead to difficulties or miss major features of JavaScript?