You can use function help() or ? to access documentations and search for help in R. For even more general searches, you can use help.search() or ??.
#For help on the help function of R
help()
#For help on the paste function
help(paste) #OR
help("paste") #OR
?paste #OR
?"paste"
Visit https://www.r-project.org/help.html for additional information