diff --git a/src/charToAscii.js b/src/charToAscii.js index a03bdf1..34f7611 100644 --- a/src/charToAscii.js +++ b/src/charToAscii.js @@ -3,5 +3,5 @@ Input: A Output: 65 */ export const charToAscii = (character) => { - //IMPLEMENTATION + return character.charCodeAt(); }; diff --git a/src/countEvenNumbers.js b/src/countEvenNumbers.js new file mode 100644 index 0000000..fd7b817 --- /dev/null +++ b/src/countEvenNumbers.js @@ -0,0 +1,3 @@ +export const charToAscii = (intArray) => { + //write code here +}; \ No newline at end of file