Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
function c4() { var theCanvas = document.getElementById('canvas4'); theCanvas.width = 550; theCanvas.height = 250; if(theCanvas && theCanvas.getContext) { var ctx = theCanvas.getContext('2d'); if(ctx) { } } }
function c4() { var theCanvas = document.getElementById('canvas4'); if(theCanvas && theCanvas.getContext) { theCanvas.width = 550; theCanvas.height = 250; var ctx = theCanvas.getContext('2d'); if(ctx) { } } }