1. 程式人生 > >node將陣列寫到一個js檔案中

node將陣列寫到一個js檔案中

const fs = require('fs');

let arr = [
    1,
    2,
    3,
    'abc'
]

fs.writeFile("url.js",'let articleUrlList = ' + JSON.stringify(arr), err => {
    if(!err) console.log("success~");
});
  • urls.js
let articleUrlList = [1, 2, 3, "abc"]