Skip to main content

Add

Add Method

Table Of Add Method

Parameters

  • table (table name to add the data to)
  • key (the key name you want to add your number to it)
  • number (the number you want to be added to the key name)
add(table, key, number)

Example Usage

await db.add("my_table", "price", 10);
// -> add 10 to price in 'my_table' table

Returned Data

Returns the final stored data after added to it

10