JavaScript mendapatkan x, y point on circle

var x = Math.cos(pointAngleInRadians) * radius;
var y = Math.sin(pointAngleInRadians) * radius;
Friendly Hawk