Debug với console.log() trong Javascript
Trong JavaScript, console.log() được sử dụng rộng rãi để ghi thông tin debug ra console của trình duyệt hoặc môi trường chạy JavaScript khác. Đây là một phương pháp đơn…
Trong JavaScript, console.log() được sử dụng rộng rãi để ghi thông tin debug ra console của trình duyệt hoặc môi trường chạy JavaScript khác. Đây là một phương pháp đơn…
Bước 1: Cài đặt môi trường VPS 1. Cập nhật phần mềm Thông thường các VPS đã cài đặt sẵn các phần mềm quan trọng rồi nên việc đầu tiên chúng…
Cách 1: Chay function removeAccents(str) { var AccentsMap = ; for (var i=0; i<AccentsMap.length; i++) { var re = new RegExp('.substr(1) + ']', 'g'); var char = AccentsMap; str =…
Closure là một chức năng có quyền truy cập vào phạm vi cha, ngay cả sau khi scope đã đóng. function speak() { var words = 'hi'; return function logIt()…
Tính tổng mảng: sử dụng reduce const arr = ; const sum = arr.reduce((total, value) => total + value, 0); console.log(sum); // 21 Kiểm tra mảng có phần tử đạt…
1. Install the npm-check-updates package globally: npm install -g npm-check-updates 2. Now run npm-check-updates to upgrade all version hints in package.json, allowing installation of the new major versions: ncu -u 3. Finally, run…
mongo show dbs use <your_db_name> show collections db.myCollection.find() db.myCollection.find().pretty() db.studentdata.getIndexes() db.studentdata.dropIndex({student_name: 1}) db.studentdata.dropIndexes() mongodump -d database_name -o directory_to_store_dumps mongorestore -d database_name directory_backup_where_mongodb_tobe_restored
PM2 is a daemon process manager that will help you manage and keep your application online. Getting started with PM2 is straightforward, it is offered as a simple and intuitive…
Cây thư mục: . ├── app.js ├── bin │ └── www ├── package.json ├── controllers ├── public │ ├── images │ ├── javascripts │ └── stylesheets │ └── style.css ├──…
Sử dụng express-generator để tạo nhanh ứng dụng express Đối với Node.js 8.2.0 trở lên có thể sử dụng lệnh npx để tạo ứng dụng: npx express-generator Đối với các…