kentcdodds / kentcdodds/express-app-example

api.math/add

Open
#3 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
JavaScript
Stars
277
Forks
58
PR merge metrics
No merged PRs in 30d

Description

```js
const sum = Number(req.query.a) + Number(req.query.c)
```
should be
```js
const sum = Number(req.query.a) + Number(req.query.b)
```

Contributor guide

No contributing guide indexed for this repository

Research direction

The issue identifies the JavaScript snippet for api.math/add; start by locating that handler and checking how its query parameters are used. Done means the addition uses the intended two inputs and the endpoint behavior is verified by the project's existing checks.

Written by the indexing model from the issue text.

Assessment

Tech stack
express, javascript
Domain
api, backend
Issue type
Bug
Difficulty
1/5
Estimated time
Under an hour
Activity status
Stale
Clarity
Clearly specified
Newbie friendliness
55/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.