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 trial

JavaScript JavaScript Basics (Retired) Introducing JavaScript About JavaScript Basics

Raslan Ismail
Raslan Ismail
10,262 Points

I thaught there is difirance between scripting language and programing language!!

I thaught there is difirance between scripting language and programing language!!

2 Answers

tldr : 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
remedies
3,616 Points

michael 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.