Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%*
- const fs = require('fs');
- const filePath = 'path';
- const content = "Hello word!";
- function app_add(filePath, content) {
- fs.appendFile(filePath, content, function(err) {
- if (err) {
- console.log(err);
- } else {
- console.log("All good...");
- }
- });
- }
- app_add(filePath, content)
- %>
Advertisement
Add Comment
Please, Sign In to add comment