What is script???? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

What is script????

Hi friends I'm just arrived here today and now, started learning HTML. But some words here confuse me. Can you please answer that what it means:- Script. And please also answer that I want to learn front end web development so what things I need to learn to do so. Thanks for your suggestions and help😀.

19th Nov 2018, 9:38 AM
Himanshu Rai
Himanshu Rai - avatar
6 Answers
+ 6
A script word can mean a programming language or code snippet to a scripting language. Some programming languages ​​do not generally have the ability to become machine language, and the executor must have the interpreter installed on the destination system. Examples of scripting languages ​​include: VBScript Javascript ActionScript Lua AutoIt NSIS Tcl Perl php Scripting languages ​​may also be used to add process automation capabilities to specialized software environments such as Corel, Photoshop, Office Products, and many other large software applications. For example, generating pages of an annual maturity can be done in InDesign software in seconds by running a predefined script.
19th Nov 2018, 1:21 PM
Mohammad Azizi
Mohammad Azizi - avatar
+ 7
For just front-end dev, you need Html CSS Javascript A script refers to a document written in a scripting language eg, Javascript or VBscript. Most of the time, the script tag would be used to contain your Javascript code
19th Nov 2018, 9:53 AM
Dlite
Dlite - avatar
+ 2
In terms of HTML, Script is the part where you can define all the concepts of Programming Languages along with the predefined functions in the library of the scripting language you're using. For ex : Defining a function and calling it, in a script. <script> Function func(){ var a="name"; document.write(a); } func(); </script> This will print the value inside a variable a i.e. name.
20th Nov 2018, 5:35 PM
Abhijeet Satogiya
Abhijeet Satogiya - avatar
+ 1
Basically a script is a code written in a scripting language. Welcome to sololearn btw.
20th Nov 2018, 6:43 PM
Brett
Brett - avatar
0
mobile legends
20th Nov 2018, 5:50 PM
kaylay
0
the <script> tag is used to tell the web browser that there is javascript in the html file
21st Nov 2018, 8:42 AM
Alex
Alex - avatar