How does this if statement work? Additional thoughts on coding specifications __javascript

Source: Internet
Author: User
<script>
/* Can you see the number of the following program alert at a glance?
*/
if (false)
if (true)
if (true)
alert ("1");
Alert ("2");
Alert ("3");

* *
This is not a clear point to write.
*/
if (false)
	if (true)
		if (true)
			alert ("1");
Alert ("2");
Alert ("3");

/*
This is more clear, but not feel too ..., what good way.
*/
if (false) {
	if (true) {
		if (true) {
			alert ("1")
		;
}}} Alert ("2");
Alert ("3");

/*
as soon as possible, if the code in the Fucntion, you can use return
if it is to support the syntax of the label, you can directly goto exit to enhance readability
/if (false) returns;
if (!true) return;
if (true) {
	alert (' 1 ');
}
Alert ("2");
Alert ("3");

/*
Summary:
1, if statement is best to use {} and progressive aspects of the separation of logic to enhance readability
2, return results as soon as possible to reduce the progressive level, enhance readability/
</script>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.