Statements – JavaScript Basics

Statements are “instructions” to be “executed” by Web Browser.

JS Statement

This is a simple statement to write “Code Projects” inside Html element.

<!DOCTYPE html>
<html>
<body>

<h1>JS Statements</h1>
<p>JS statements are executed by browser.</p>
<p id="ex"></p>

<script>
document.getElementById("ex").innerHTML = "Code Projects";
</script>

</body>
</html>

Output :

 

 

 

 

JS Programs

JS programs contains many JavaScript statements and statements are executed in order as they are written, 1 by 1. Below a, b, c are the values and at last value of c is displayed :

<!DOCTYPE html>
<html>
<body>

<h1>JS Statements</h1>
<p id="ex"></p>

<script>
var a, b, c;
a = 10;
b = 20;
c = a + b;
document.getElementById("ex").innerHTML = c;
</script>
</body>
</html>

Output :

 

 

 

 

Semicolons

Js Statements are separated by Semicolons ( ; )

<!DOCTYPE html>
<html>
<body>

<h1>JS Statements</h1>
<p> JS Statements are Separated by semicolons </p>
<p id="ex"></p>

<script>
var a, b, c;
a = 10;
b = 20;
c = a + b;
document.getElementById("ex").innerHTML = c;
</script>

</body>
</html>

Output :

 

 

 

 

White Space

Multiple spaces are ignored by JS. To make your codes more readable you can add White Spaces which makes your statements clear to read and understand.

var a = b + c;

var person = "Harry";

Line Breaks & Line Lengths

To read codes clearly its better to break the line when it doesn’t fit in a single line and the best part to break line is after an operator.

<!DOCTYPE html>
<html>
<body>

<h1>JS Statements</h1>
<p> Its better to break code line after an operator or a comma to read it clearly!! </p>
<p id="ex"></p>

<script>
document.getElementById("ex").innerHTML =
"Code Projects";
</script>

</body>
</html>

Output :

 

 

 

 

Code Blocks

Use of code blocks is to define statements to be executed together.

<!DOCTYPE html>
<html>
<body>
<h1>JS Statements</h1>
<p> Between { & } code blocks are written! </p>
<p id="ex"></p>
<p id="exx"></p>
<button type="button" onclick="myFunction()">Click Me</button>

<script>
function myFunction() {
 document.getElementById("ex").innerHTML = "Code Projects";
 document.getElementById("exx").innerHTML = "Projects, Tutorials & More . .";
}
</script>

</body>
</html>

Output :

 

 

 

 

 

 

 

 

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x
Scroll to Top
\r\n <\/div>\r\n<\/div>\r\n","isUserRated":"0","version":"7.6.29","wc_post_id":"849","isCookiesEnabled":"1","loadLastCommentId":"0","dataFilterCallbacks":[],"phraseFilters":[],"scrollSize":"32","is_email_field_required":"1","url":"https:\/\/code-projects.org\/wp-admin\/admin-ajax.php","customAjaxUrl":"https:\/\/code-projects.org\/wp-content\/plugins\/wpdiscuz\/utils\/ajax\/wpdiscuz-ajax.php","bubbleUpdateUrl":"https:\/\/code-projects.org\/wp-json\/wpdiscuz\/v1\/update","restNonce":"ced9423c77","is_rate_editable":"0","menu_icon":"https:\/\/code-projects.org\/wp-content\/plugins\/wpdiscuz\/assets\/img\/plugin-icon\/wpdiscuz-svg.svg","menu_icon_hover":"https:\/\/code-projects.org\/wp-content\/plugins\/wpdiscuz\/assets\/img\/plugin-icon\/wpdiscuz-svg_hover.svg"}; var wpdiscuzUCObj = {"msgConfirmDeleteComment":"Are you sure you want to delete this comment?","msgConfirmCancelSubscription":"Are you sure you want to cancel this subscription?","msgConfirmCancelFollow":"Are you sure you want to cancel this follow?","additionalTab":"0"}; -->