In this example we will create a program to change a user inputted string to upper case. For this we use the String.ToUpper() Method which as the name suggests will …
programmerdude
-
-
In this example we will create a program that compares 2 strings To do this we will use the string.CompareTo() Method This compares this instance with a specified object or …
-
The fs.rename() method is used to asynchronously rename a file at the given old path to a given new path. It will overwrite the destination file if it already exists. …
-
In this example we show how to read a file in node.js Following is a basic guide to reading the content of a file in Node.js. You need to include …
-
The JavaScript Screen object is used to fetch information related to the browser screen on which the current window is rendered. It provides information about the dimensions of the display …
-
The JavaScript navigator object is used for browser detection. It can be used to retrieve various bits of browser information such as appName, appVersion, userAgent, langauge and more The navigator …
-
The JavaScript history object is used to represent an array of URLs which are visited by the user. It exposes some methods and properties that let you navigate back and …
-
In this article we will show you how to get yesterdays date in javascript The first step is to get the current date and subtract 1 from it and use …
-
The Chalk module is a third-party module that is used for styling the format of text and allows us to create our own themes in a node.js project. You can …
-
In this article I take a look at a library which can be used to generate ‘fake’ data If your an application developer the more likely scenario is that you …