Should I learn/become proficient in Javascript?

后端 未结 20 1709
礼貌的吻别
礼貌的吻别 2021-01-31 21:48

I am a .NET webdev using ASP.NET, C# etc... I \"learned\" javascript in college 5+ years ago and can do basic jobs with it. But I wonder if it is useful to become proficient in

相关标签:
20条回答
  • 2021-01-31 22:12

    If all you want is to do some simple UI-effects and the like, I suggest you just pick a library and go for it!

    Using libraries eliminates all the flawed implementations of JavaScript and provides you with an API which is the same across all browsers. And if you're working together with others it is also a great way of implementing code-standards and best practices.

    0 讨论(0)
  • 2021-01-31 22:14

    I'll go with the opposite answer most are putting out there. Learning javascript as a developer these days is almost pointless. The language is similar enough to java/C# that it's syntax and semantics shouldn't be lost on you.

    What you should learn is jQuery.

    As you use jQuery you'll pick up the most common things you'll ever need from javascript anyway.

    0 讨论(0)
  • 2021-01-31 22:16

    Javascript is one of those languages that spending a few hours learning will probably teach you 99% of what you will ever really use. I would imagine you are at the point in your learning of javascript that you know more than enough now and just learn one or more of the frameworks now.

    0 讨论(0)
  • 2021-01-31 22:19

    I would recommend brushing up on your non-frameworked javascript first. Refreshing/learning basic concepts of dom manipulation and what not. Like learning how to build a linked list, stack or queue in C++ before learning how to use the STL (standard template libraries).

    In addition to brushing up on straight javascript, it might be good to get into a framework that doesn't abstract and change the way things work so much, for instance Prototype. You code with it very much the same way you code with straight javascript. Read through the Prototype code, learn how to make classes, and do some fancy stuff. From experience, I can say reading through the Prototype.js helped me learn alot.

    After messing around a bit, then I'd say go for jQuery. If jQuery didn't, literally, change the way you write code I'd say go for it first, but learning how to build classes and js inheritance and what not can be a very important lesson for someone who wants to become fluent in JS.

    0 讨论(0)
  • 2021-01-31 22:21

    Yes, you should learn JavaScript. Sooner or later you will need to use it!

    0 讨论(0)
  • 2021-01-31 22:22

    Yes, absolutely you should learn JavaScript if you are doing web development. I highly recommend JavaScript: The Good Parts, by Doug Crockford. And, JQuery is a great framework to use (this site uses it) -- it kind of depends on what you are trying to do -- YUI and ExtJS are also very nice.

    0 讨论(0)
提交回复
热议问题