var canvas = document.createElement('canvas'),
ctx = canvas.getContext("2d"); //Create the context
//more code (width, height defined elsewhere)
ctx.beginPath();
ctx.moveTo(0.35 * width, 0);
ctx.lineTo(0.35 * width, 0.65 * height);
ctx.lineTo(1 * width, 0.65 * height); //JSHint is complaining about the 1 here
ctx.stroke();
爲什麼我在這裏得到一個錯誤?爲什麼我在JSHint中獲得'Unexpected 1'?
什麼是約1.0? – Vladimirs
試過了,仍然得到了同樣的錯誤 – AllisonC
我在jshint.com上嘗試過,無法重現您的問題。請在你的問題中更準確地說明你如何得到這個錯誤。 –