Working with Files Flashcards
1
Q
How to read a file and write it into a variable?
A
import fs from “fs”
let file = fs.readFileSync(“filename”, “utf-8”)
2
Q
What is utf-8?
A
Unicode Transformation format -8 bits
it is a character encoding format.
many characters are not recognized by ascii like emoji’s and other language characters such as japanese.
utf8 makes sure that it reads any kind of language or symbols.
3
Q
How would you read a file Asynchronously?
A
using: fs.readFile()
ex:
fs.readFile(“text.txt”, “utf-8”, func(err, content) {
console.log(content)
}
4
Q
A