Remove array element

An example showing how to remove element from array using Tizen 2.3.
var arr = ['a', 'b', 'c', 'd', 'e', 'f'];
arr.splice(3, 1); // Removes "d" element from array

Responses

0 Replies