WebAssembly.Global.prototype.valueOf()

The valueOf method of the WebAssembly.Global object prototype returns the value contained inside the global variable.

Syntax

js
valueOf()

Parameters

None.

Return value

A string indicating the value of the global.

Examples

undefined

Basic usage

js
const myGlobal = new WebAssembly.Global({ value: "i32", mutable: true }, 42);

// 42
console.log(myGlobal.valueOf());

Specifications

See also