반응형
Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- Front-end
- 세부
- 다이빙
- 젤다의전설
- JS
- Linux
- 취미
- JavaScript
- 페오엑
- 뱀파이어서바이벌
- 야생의숨결
- 어드벤스
- hybride
- window10
- poe2
- 씨홀스
- 여행
- ubuntu
- docker
- 공략
- 스쿠버다이빙
- 엘든링
- 오픈워터
- 개발툴
- guide
- psql
- 게임
- PostgreSQL
- WebView
- window
Archives
- Today
- Total
목록콘솔로그 색넣기 (1)
Rianshin

#console.assert(expression, object) Log level: Error Writes an error to the console when expression evaluates to false. const x = 5; const y = 3; const reason = 'x is expected to be less than y'; console.assert(x < y, {x, y, reason}); #console.clear() Clears the console. console.clear(); If Preserve Log is enabled, console.clear() is disabled. Alternatively, you can Clear the Console by clicking..
Develop/Javascript
2022. 10. 4. 10:38