Lấy ngày hiện tại trong javascript
date,tipjs,function
Lấy ngày hiện tại trong javascript
const getDay = (fillFlag=true) => {
const day = new Date().getDate()
const dayRe = day
if (fillFlag) day < 10 ? `0${day}` : day
return dayRe
}
//Ouput:
console.log(getDay());//27Có thể bạn đã miss một số snippets code
encode/decode base64 with JS
Encoding to base64 is done with the btoa command
Sử dụng reduce và concat làm phẳng một array
Array.reduce() và Array.concat() có thể giúp chúng ta làm phẳng một Array như:
Hàm lày ngày trong tuần javascript
Hàm lày ngày trong tuần javascript
lỗi access-control-allow-origin và cách khắc phục
lỗi access-control-allow-origin và cách khắc phục trong express, nodejs
Copy a string to the clipboard
Copy a string to the clipboard. Only works as a result of user action (i.e. inside a click event listener).