Live data from Hacker News

Microsoft launches an HTML5 version of Cut the Rope

cuttherope.ie

131–132 of 132 posts

Re: Microsoft launches an HTML5 version of Cut the Rope

#131

The behind the scenes writeup is good: http://www.cuttherope.ie/dev/ Although the senior developer says in the video: "Objective C is object oriented, has classes and structs. And those things just don't exist in JavaScript." .. Well, except object orientation, of course ;-)

Are you saying that you think Javascript is object oriented because it can create an Object and enclosed functions? I have always been taught while we can make it look like OOP, it is not because it does not have inheritance through classes AS PART OF THE LANGUAGE.

Re: Microsoft launches an HTML5 version of Cut the Rope

#132

The behind the scenes writeup is good: http://www.cuttherope.ie/dev/ Although the senior developer says in the video: "Objective C is object oriented, has classes and structs. And those things just don't exist in JavaScript." .. Well, except object orientation, of course ;-)

Are you saying that you think Javascript is object oriented because it can create an Object and enclosed functions? I have always been taught while we can make it look like OOP, it is not because it does not have inheritance through classes AS PART OF THE LANGUAGE.

JavaScript is object oriented but it gets the inheritance from prototypes instead of classes. Prototypes are very powerful, you can implement a class system in JavaScript if you want to but the reverse is not true.
Post reply on HN