Joce
0
Q:

removing element from array in dart

import 'dart:core';

void main() {
  
  List<int> intArr = [1,2,3,4,5,6,8,9,10];
    
  //Remove a value from the list
  //syntax: List.remove(value)
  intArr.remove(3);
  
  //Remove element at specific index or location
  //syntax: List.removeAt(index)
  intArr.removeAt(5);
  
  //Remove last element 
  intArr.removeLast();
  
  //Remove range of elements
  //syntax: List.removeRange(startIndex, endIndex)
  intArr.removeRange(0,2);
}
2

New to Communities?

Join the community