🔹File System (fs)
The file system module is one of the more often used modules available. It provides an API for working with the local file system.
to use this we make use of require( ) :
//example
const fs = require("fs");
Functions in File Syst...