ランダム関数の小数点以下を切り捨て、整数にする→Math.floor
var cphand = Math.random() * 3
これを
var cphand = Math.floor(Math.random() * 3)
とすることで「0,1,2」のみにする。
###フォームのvalueを受ける
var myhand = document.getElementById('myhand').value
条件分岐
myhandとcphandを9回比較する。
参考サイト>https://myx.skr.jp/game0.html
http://www.ics.kagoshima-u.ac.jp/edu/katuyoukiso/vc/step4.html