Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 1.1 KB

README.md

File metadata and controls

48 lines (36 loc) · 1.1 KB

find-grade

Github License GitHub Package.json Version GitHub Issues GitHub Pull Requests GitHub Contributors repo size

random one or many text

Installing

Install with NPM

npm install find-grade

or install with Yarn

yarn add find-grade

Example

with import

import findGrade from "find-grade";

let score = 60;
let result = findgrade(score);
console.log(result);
// output = 2

with require

const findGrade = require("find-grade").default;

let score = 60;
let result = findgrade(score);
console.log(result);
// output = 2