---
id: 645b9ea45d3a9a9d711df81a
title: Step 17
challengeType: 0
dashedName: step-17
---
# --description--
Finally, you should clear the number input by setting its value to an empty string. Then later when you convert several numbers in a row, you won't have to delete the previous number before entering the next one.
Set the `value` property of `numberInput` to an empty string.
# --hints--
You should set the `value` property of `numberInput` to an empty string.
```js
assert.match(String(checkUserInput), /decimalToBinary\((\s|.)*\)\s*;?\s*numberInput\s*\.\s*value\s*=\s*('|"|`)\2|decimalToBinary\((\s|.)*\)\s*;?\s*numberInput\s*\[\s*('|"|`)value\4\s*\]\s*=\s*('|"|`)\5/);
```
# --seed--
## --seed-contents--
```html