• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Beginning Object Oriented Javascript Question

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,
I've dabbled a bit with Javascript, but did not get in depth with it. Lately I notice many application coming out written solely in Javascript, is this book a good start to learn to take my web apps in that direction?
 
Sheriff
Posts: 67747
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Written solely in JavaScript? No back-end components? That would be very limited in scope.

The advances in JavaScript, JavaScript knowledge, and the JavaScript libraries that have been popping up like mushrooms have all made rich interfaces in the browser much more possible and easier to create. But the need for server-side components isn't going anywhere -- especially when database access is involved.

That said, the nature of web applications is changing, and that entails changes in the way that the server-side components are written. The emphasis on full-page responses has diminished greatly in favor of smaller packets of info: HTML fragments, XML data, JSON data, and so forth.
 
author
Posts: 85
5
PHP
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi R., you're right, we've been moving towards the client increasingly and JS is the language of the browser.

Bear is right, the future of the web pages lies in those component-type pieces and widgets that consume web services from all over the place and mash'em up. The futute is now, check iGoogle, my yahoo or foxytines planet. And since you can have web services return you JSON, you can build your app entirely on the client with JavaScript.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic