최근 웹에서 많은 JavaScript 파일 ;
이 주석 섹션 바로 뒤에서 시작된다는 것을 알았습니다 .
예를 들어이 jQuery 플러그인 코드는 다음과 같이 시작합니다.
/**
* jQuery.ScrollTo
* Copyright (c) 2007-2008 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
* Dual licensed under MIT and GPL.
* Date: 9/11/2008
.... skipping several lines for brevity...
*
* @desc Scroll on both axes, to different values
* @example $('div').scrollTo( { top: 300, left:'+=200' }, { axis:'xy', offset:-20 } );
*/
;(function( $ ){
파일이 왜 ;
? 로 시작해야 합니까? 서버 측 JavaScript 파일 에서도이 규칙을 봅니다.
이 작업의 장점과 단점은 무엇입니까?
return
스크립트에서 마지막 으로 진술을 할 수는 없습니까? 최상위 레벨로 돌아 오는 것은 의미가 없습니다. 다른 것이되어야합니까?