js move item to front of array code example
Example 1: javascript add new array element to start of array
var colors = ["white","blue"];
colors.unshift("red");
Example 2: js add element to front of array
var numbers = ["2", "3", "4", "5"];
numbers.unshift("1");
Example 3: js get index of item in array
array.indexOf("item");
Example 4: move element to the top of list javascript
const data= [{code:"001",name:"Kirk-Patrick Brown"},{code:"002",name:"Sara Brown"},{code:"003",name:"Joe Frazer"}];
const firstItem = "003";
data.sort((x,y)=>{ return x.code === firstItem ? -1 : y.code === firstItem ? 1 : 0; });
console.log(data);
Example 5: javascript move array element to front
for(var i = 0; i<$scope.notes.length;i++){
if($scope.notes[i].is_important){
var imortant_note = $scope.notes.splice(i,1);
$scope.notes.unshift(imortant_note[0]);
}
}