answersLogoWhite

0

C.

The C language is the basis for JavaScript, as well as C++, C#, PHP, and Java. (Among others.)

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is syntax in c?

syntax is the way you write your code in it defines the meaning of keywords & how to write


What syntax-based language integrates into HTML pages?

JavaScript


What is the correct JavaScript syntax to write Hello World?

document.write("hello world");


What is the correct JavaScript syntax for opening a new window called w2?

w2=window.open("http://www.w3schools.com");


How do you save javascript on Roblox?

It is not possible to save and execute Javascript code on Roblox. You can save Javascript code as plain text in script objects, but there is no way to execute the code. Roblox uses a scripting language called LUA in-game which is somewhat similar to JavaScript, but it is not identicle. You can learn about LUA syntax on the Roblox wiki.


What is the correct JavaScript syntax to insert a comment that has more than one line?

The proper syntax to insert a multi-line comment into JavaScript is to surround the comment with /* and */ function useless() { /* This function doesn't do anything We should come back to it. Soon. */ }


What is the meaning of new keyword in java?

There is 48 reserved keywords currently defined in the java language. These keywords, combined with the syntax of the operators and separators,form the definition of the java language. these keywords can't be used as names for a variable,class or method. (chandramohan singh)


Which programming language does PHP resemble?

PHP uses a Perl-like syntax, but is simpler, less consistent and more limited.


Which Compuer Institute is giving Job based Training on JavaScript in FL?

The International Webmasters Association offers an Introduction to JavaScript training program for $220. You will learn the language syntax, how create variables and how to debug. The website is http://www.hwg.org/services/classes/javascriptcourse.html


What is the syntax for using the conditional construct in computer programming to create a decision-making statement?

In computer programming, the syntax for using the conditional construct to create a decision-making statement typically involves the use of keywords such as "if," "else if," and "else." These keywords are followed by a condition that evaluates to either true or false, and the code block within the curly braces is executed based on the result of the condition.


What is the syntax for writing a loop in pseudo code?

The syntax for writing a loop in pseudo code typically involves using keywords like "for", "while", or "do-while" to indicate the type of loop, followed by the loop condition and the code block to be executed within the loop.


What is the difference between syntax and semantics in programming languages?

Syntax in programming languages refers to the rules and structure that dictate how code is written, such as correct use of punctuation and keywords. Semantics, on the other hand, refers to the meaning and interpretation of the code, including how the instructions are executed and the logic behind them. In essence, syntax is about the form of the code, while semantics is about its function and behavior.