Select first element of nested list January 1, 2023 by Tarik Not much of a shortcut, but you can do this: lapply(x, `[[`, 1) # [[1]] # [1] 1 # # [[2]] # [1] 3 # # [[3]] # [1] 5