node fileName operation values // values is optional for randomnode index.js add 1 5 // Output --> 6node index.js sub 9 5 // Output --> 4node index.js mul 1 5 // Output --> 5node index.js divide 32 4 // Output --> 8node index.js sin 60 // Output --> -0.3048106211022167 || sin of an angel given in radiansnode index.js cos 60 // Output --> -0.9524129804151563 || cos of an angel given in radiansnode index.js tan 60 // Output --> 0.320040389379563 || tan of an angel given in radiansnode index.js random // Generate a random number between 0 to 10