function drawGameBoard(){ // Reset board ctx.clearRect(0, 0, canvas.width, canvas.height); drawPlayerNames(); } function drawPlayerNames(){ // Player Name //ctx.fillText(playerName, 50, canvas.height - 50); // Opponent Name //ctx.fillText(opponentName, canvas.width - (ctx.measureText(opponentName).width + 50), 50); }