“Módulos Node.js” Respostas de código

Nó requer módulo

// Use require.main.require to get a module from the root folder.
const Globals = require.main.require("./globals.js");
const YourCustomModule = require("./yourmodule.js");

console.log(YourCustomModule.message);

// --- yourmodule.js ---
module.exports = {
	message: "Hello World!",
	otherData: "Hello Grepper!"
};
Nathan uses Linux

área de um círculo

def circle(radius):
	return radius * math.pi * 2
Charming Chicken

Programa Circle Python

#Area and circumference of a circle.
r=float(input('Enter the radius of the circle :'))
pi=22/7
area=pi*r**2
circumference=2*pi*r
print('The area of the circle is',area)
print('The circumference of the circle is',circumference)
_______________________________________________________________________________
Gr@Y_orphan_ViLL@in##

Módulos Node.js

const baseball = require('./babeRuth.js')
Magnificent Monkey Adi

Respostas semelhantes a “Módulos Node.js”

Procure respostas de código populares por idioma

Procurar outros idiomas de código