"JavaScript debounce()"의 두 판 사이의 차이

 
4번째 줄: 4번째 줄:
<syntaxhighlight lang='javascript'>
<syntaxhighlight lang='javascript'>
function debounce(func, wait, immediate) {
function debounce(func, wait, immediate) {
var timeout;
let timeout;
return function() {
return function() {
var context = this, args = arguments;
const context = this, args = arguments;
var later = function() {
const later = function() {
timeout = null;
timeout = null;
if (!immediate) func.apply(context, args);
if (!immediate) func.apply(context, args);
};
};
var callNow = immediate && !timeout;
const callNow = immediate && !timeout;
clearTimeout(timeout);
clearTimeout(timeout);
timeout = setTimeout(later, wait);
timeout = setTimeout(later, wait);

2020년 10월 7일 (수) 14:18 기준 최신판

1 개요[ | ]

JavaScript debounce()
function debounce(func, wait, immediate) {
	let timeout;
	return function() {
		const context = this, args = arguments;
		const later = function() {
			timeout = null;
			if (!immediate) func.apply(context, args);
		};
		const callNow = immediate && !timeout;
		clearTimeout(timeout);
		timeout = setTimeout(later, wait);
		if (callNow) func.apply(context, args);
	};
};

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}