jquery .push code example

Example 1: push tr in tbody using jquery

$("#tableId > tbody").append(data);

Example 2: javascript pushing to an array

some_array = ["John", "Sally"];
some_array.push("Mike");

console.log(some_array); //output will be =>
["John", "Sally", "Mike"]

Example 3: js push array

array.push(element_to_push);

Example 4: js add item to array

const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");

Example 5: javascript array push

var fruits = [ "Orange", "Apple", "Mango"];

fruits.push("Banana");