VOOZH about

URL: https://www.geeksforgeeks.org/node-js/node-js-os-eol/

⇱ Node.js os.EOL - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js os.EOL

Last Updated : 13 Oct, 2021
The os.EOL constant is an inbuilt application programming interface of the os module which is used to get end-of-line character or marker as specified by the operating system. Syntax:
os.EOL
Return Value: It returns the EOL (end-of-line marker) as specified by the operating system on which it is running. Below examples illustrate the use of os.EOL constant in Node.js: Example 1: Output:
"\r\n"
Example 2: Output:
Paragraphs always contains EOL
EOL stands for end of line
EOL varies from os to os
For windows it is \r\n
For POSIX it is \n

Note: The above program will compile and run by using the node index.js command. Reference: https://nodejs.org/api/os.html#os_os_eol
Comment

Explore