Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRaslan Ismail
10,262 PointsI thaught there is difirance between scripting language and programing language!!
I thaught there is difirance between scripting language and programing language!!
2 Answers
Connor Walker
17,985 Pointstldr : A scripting language is a programming language that doesn't get compiled before it is ran
https://stackoverflow.com/questions/17253545/scripting-language-vs-programming-language
remedies
3,616 Pointsmichael edmondson "Compiled" means that you need a compiler to convert your code into a low level "machine" language in order for the computer to understand. An example of a compiled language is C++. Javascript, on the other hand, is a scripting/interpreted language, you don't need to compile it. You just run it using a browser which interprets the code. Compiling is basically just an extra step before you can run your code.
Raslan Ismail
10,262 PointsRaslan Ismail
10,262 Pointsthanks
michael edmondson
4,511 Pointsmichael edmondson
4,511 Pointswhat do you mean when you say compiled?