In R, type a comment naming the value, then assign 1200 to an object called sales.
In R, type a comment naming the value, then assign 1200 to an object called sales.
Answer
# January order value sales <- 1200
# starts a comment R ignores; <- puts 1200 into sales, which appears in the Environment pane. Nothing prints — assignment is silent.