How would you append a single non-iterative component to your list?

my_list <- c(my_list, 23)my_list.append(23)add.component(my_list,23)

Nice! We add a single non-iterative component to our list by using the c() function.

Yikes! We add a single non-iterative component to our list by using the c() function.