https://github.com/arikato111/find-grade
find grade of school with nodejs library
https://github.com/arikato111/find-grade
grade npm-package score typescript
Last synced: 3 months ago
JSON representation
find grade of school with nodejs library
- Host: GitHub
- URL: https://github.com/arikato111/find-grade
- Owner: Arikato111
- License: mit
- Created: 2023-07-09T13:51:07.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-15T03:08:37.000Z (almost 2 years ago)
- Last Synced: 2025-02-20T21:47:24.191Z (4 months ago)
- Topics: grade, npm-package, score, typescript
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/find-grade
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#
find-grade
![]()
![]()
![]()
![]()
![]()
![]()
random one or many text
## Installing
Install with NPM
```
npm install find-grade
```
or install with Yarn
```
yarn add find-grade
```## Example
### with `import`
```js
import findGrade from "find-grade";let score = 60;
let result = findgrade(score);
console.log(result);
// output = 2
```### with `require`
```js
const findGrade = require("find-grade").default;let score = 60;
let result = findgrade(score);
console.log(result);
// output = 2
```