
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Leading Semicolon in JavaScript Libraries
A function in JavaScript looks like the following:
(function(){...})()
A library in JavaScript shows a function, which begins with a semicolon, for example:
;(function ) { }
The semicolon allows to safely concatenate several JS files into one. This is to serve it faster as one HTTP request.
A leading semicolon can also be to protect from preceding code, which may have been improperly closed. A semicolon will definitely prevent this from happening.
Advertisements