> For the complete documentation index, see [llms.txt](https://hive-db.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hive-db.gitbook.io/docs/documentation/input.md).

# Input

Example:-

```javascript
const db = require('hive-db')
db.input('bio.name',['Tensor']);
console.log(db.array('bio.name');
// db.array is another method of hive-db, next in the docs
// output => Lason, Tensor

```
