erinpletzkee4769 erinpletzkee4769 08-02-2024 Computers and Technology contestada Using the .slice() method, complete the following code so that it returns the last 4 characters of whatever value myString holds. a) myString.slice(myString.length - 4); b) myString.slice(4); c) myString + 4; d) myString.slice(-4);