DEV Community

Discussion on: Pure and Simple - Tic Tac Toe with Javascript

Collapse
 
truepiotrek profile image
truepiotrek • Edited

And one thing from my side :) When you display winning/draw message you use:

statusDisplay.innerHTML = someMessage();

I think it should be used as:

statusDisplay.innerHTML = someMessage;

If I do it your way IDE tells me it's not of function type which is true since it's a const with a string inside. Apart from that it's great (:

EDIT: I've just noticed that you have functions there... This explains a lot :D