What is the first thing I should try before learning to program?

I come from the background of XHTML / CSS. I have little knowledge of JavaScript. Would you recommend learning JavaScript before learning a programming language on a server?

+4
source share
5 answers

No, not at all. You can try to study at the same time. You can enjoy AJAX by sending data to and from the web server to dynamically refresh your page.

A server language such as PHP is very similar to JavaScript, so you should not have problems learning at the same time.

+6
source

I think this is a great idea. If you really understand XHTML and CSS, then doing simple event programming through jquery can be really fun. However, what you learn will not facilitate learning the server platform, as the way you work in two environments and their attributes are really different. However, learning how to manipulate the DOM will make CSS work a lot cooler.

+4
source

There are two ways to β€œprogram” as a profession. The traditional route involves choosing courses and languages ​​based on some ultimate goal: "I would like to become a server developer."

Otherwise, you will receive fewer certificates. But that means: find out what inspires you. Because his inspiration is a natural state of learning. There is no limit to the number of languages ​​or useful facts that can be learned in this way. Find the challenges you inspire. Simple problems first. And solve them. Programming in some language.

+4
source

I suggest starting with scratch .

+1
source

It looks like you're a page developer right now. If you want to switch to a hard programming role, I would recommend an official programming language, starting with Java or C #.

0
source

Source: https://habr.com/ru/post/1300366/


All Articles