Este operador dará o último valor emitido pela fonte Observable.
Sintaxe
last()
Valor de retorno
Ele retorna um observável com o último valor.
Exemplo
import { of } from 'rxjs';
import { last } from 'rxjs/operators';
let all_nums = of(1, 6, 5, 10, 9, 20, 40);
let final_val = all_nums.pipe(last());
final_val.subscribe(x => console.log("The last value is = "+x));
O último () fornece o último valor da lista fornecida.
Resultado