Front/JS & jQuery

[js] console.time()

오선지♬ 2023. 12. 4. 18:59
728x90
반응형

https://www.w3schools.com/jsref/met_console_time.asp

 

JavaScript console.time() Method

W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

www.w3schools.com

 

consoel.time();

... 시간측정할 코드

console.timeEnd();

 

()안에 아무것도 입력하지 않으면 자동으로 Default 로 설정되고,

이름을 설정하고 싶으면 () 안에 이름을 넣어준다.

ex) 

consoel.time( "update time"  );

... 시간측정할 코드

console.timeEnd( "update time"  );

 

728x90
반응형

'Front > JS & jQuery' 카테고리의 다른 글

[jQuery] table tr 색상 설정  (0) 2023.12.10
[jQuery][datepicker] 삭제버튼  (1) 2023.12.07
[js] 정규표현식  (0) 2023.12.01
[JS][Quill] quill editor - 자동 글머리기호 완성 비활성화 하기  (0) 2023.11.30
[js] .includes()  (0) 2023.11.28