Question from the Node.js test

Import a function from an ES2015 module in NodeJS

Easy

With babel, we set up the following ES2015 module, named GameUtils.js:

export function getRandomInteger(min, max) {
  return Math. random() * (max - min) + min;
}

export default function getDistance(x1, y1, x2, y2) {
  return Math.sqrt( Math.pow(x1 - x2, 2) + Math.pow(y1 - y2, 2) );
};

Which import method will call getRandomInteger using the name randomInteger? :

//[What import to put here...?]
console.log( randomInteger() );
Author: Jean-marie CléryStatus: PublishedQuestion passed 736 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!