1
0
Fork 0

add the require command

This commit is contained in:
Wilfried Goesgens 2015-11-16 09:44:12 +01:00
parent e0fa064f72
commit ad4962657c
1 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,8 @@ If the first argument is not a formatting string or any of the additional argume
**Examples**
```js
var console = require("console");
console.log("%s, %s!", "Hello", "World"); // => "Hello, World!"
console.log("%s, World!", "Hello", "extra"); // => "Hello, World! extra"
console.log("Hello,", "beautiful", "world!"); // => "Hello, beautiful world!"