remove
Last updated
Last updated
Removes a value from an object using a key.
Name | Description | Input Type | Default | Options | Required |
---|---|---|---|---|---|
data | The reference object to be updated. | Object | - | - | Yes |
attribute | The key of the value to be removed from the object. | Text | - | - | Yes |
Description | Output Type |
---|---|
Returns the updated object. | Object |
In this example, we will remove a key from an object and print the updated object in the console.
Drag a button
component into the canvas and open the Action
tab. Select the press
event of the button and drag the Log.write
function to the event flow.
Call the function Object.remove
inside the Log.write
function.
Then call the function Conversion.toObject
inside the data
parameter of the Object.remove
function.
Sample parameters are shown in the picture below.
The console will print the updated object.
For this example, the printed value will be {name: 'John'}
.
See also:
Functions