Cool! Unity is pretty easy to pick up!
Here's some links:
TutorialUnity Script ReferenceHere's your line of code, pressing a will result in rotation:
if (Input.GetKeyDown("a")) {transform.Rotate (Vector3.up, -120);}
If you want to add time, I'm not sure, probably add the delta time function somewhere, but I'm not really good at JS (or any code).
Changing it's rotation speed manually, sounds like you're already running a code and you just need to change some parameters, which you can do without closing it, unless you've hard-coded it into your script.