I believe every programmer must learn about a core programming language and a scripting language. Seriously I've no hand in any languages like Python, JavaScript, JScript, CScript etc. I'm native Windows Developer and which scripting language would be the best one to do some automation/web related stuffs.
|
closed as off topic by Yannis Rizos♦ May 31 '12 at 7:05
Questions on Programmers Stack Exchange are expected to relate to software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
Python. Period. EDIT Because Python is:
|
|||||||||||||||
|
For web stuff, JavaScript is extremely useful. It complements any server-side programming you are doing in other languages and it gives you a taste of scripting that is pretty easy to learn and can be tested right there in the browser. For windows automation I use Powershell a lot. It doesn't feel much like a real language ( maybe Perl, a touch ) and you wouldn't use it to write applications, but it really is very handy for automating things in Windows that you need to automate, and as it can reach into .net it can actually do a lot of clever things with your system- more than you might expect. If you want to learn something for fun then maybe start with Ruby. It's flexible, expressive and powerful but mostly it is an absolute pleasure to program with. |
|||
|
General purpose? Then either Python or Perl. I'd say the latter was more used but it doesn't really matter, just pick one of the two and go with it! |
|||
|
If you want to continue with Windows development only, then you should go with VBScript and/or JScript. |
|||
|
For web related stuff I would recommend you to use JavaScript and PHP as a start. both are very common scripting languages and you can find many articles to get a good start. |
|||
|