LeetCodeDetermine Color of a Chessboard SquareDetermine Color of a Chessboard SquareEasyMathStringSolution export function squareIsWhite(coordinates: string): boolean { return coordinates.charCodeAt(0) % 2 !== parseInt(coordinates[1]) % 2; }LeetCodeDetermine Color of a Chessboard Squarehttps://leetcode.com/problems/determine-color-of-a-chessboard-square