I'm having trouble figuring out how to remove items from an array after using the join() function.
As you'll see, the first array.splice() works, but the second does not...
var recordsArray1 = ['a','b','c','d','e','f'];
console.log(recordsArray1.length);
recordsArray1.splice('a', 1);
console.log(recordsArray1);
var recordsArray2 = ['g','h','i','j','k','l'].join('\n');
console.log(recordsArray2.length);
recordsArray2.splice('g', 1);
console.log(recordsArray2);
Thanks for any help.
Tim