Select multiple columns in data.table by their numeric indices

How can we select multiple columns using a vector of their numeric indices (position) in data.table? This is how we would do with a data.frame: df <- data.frame(a = 1, b = 2, c = 3) df[ , 2:3]...