[Home](./index.md) > [puppeteer](./puppeteer.md) > [JSHandle](./puppeteer.jshandle.md) > [jsonValue](./puppeteer.jshandle.jsonvalue.md)
## JSHandle.jsonValue() method
Returns a JSON representation of the object.
Signature:
```typescript
jsonValue(): Promise<{}>;
```
Returns:
Promise<{}>
## Remarks
The JSON is generated by running [JSON.stringify](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify) on the object in page and consequent [JSON.parse](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse) in puppeteer. \*\*NOTE\*\* The method will throw if the referenced object is not stringifiable.