Answers for "js array move item to front"

56

javascript push item to beginning of array

var colors = ["white","blue"];
colors.unshift("red"); //add red to beginning of colors
// colors = ["red","white","blue"]
Posted by: Guest on July-23-2019
1

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]);//push to front
	}
}
Posted by: Guest on January-02-2020

Code answers related to "js array move item to front"

Code answers related to "Javascript"

Browse Popular Code Answers by Language