I am creating a pipe in angular2 where I want to split the string on white spaces and later on read it as an array.
let stringToSplit = "abc def ghi";
StringToSplit.split(" ");
console.log(stringToSplit[0]);
When I log this, I always get "a" as output. Where I am going wrong?