The code from the Learn JavaScript the Hard Way module JavaScript Level 1 exercises. This is a mirror of the code I have in the book, so if you're struggling you can use this to compare against your attempts.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

23 lines
467 B

// Exercise 12: Functions, Files, Variables
const fs = require('fs');
const print_lines = (err, data) => {
console.log(data.toString());
}
const yell_at_me = (what) => {
return what.toUpperCase();
}
fs.readFile("poem.txt", print_lines);
// let's do that again but with an anonymous function
// you've actually seen this before
fs.readFile("poem.txt", (err, data) => {
let yelling = yell_at_me(data.toString());
print_lines(err, yelling);
});