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”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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)
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly