const str = '3.1415.926.53589.79323.846.264338.3279502.8841971';
const lastIndex = str.lastIndexOf('.');
const before = str.slice(0, lastIndex);
console.log(before);
const after = str.slice(lastIndex + 1);
console.log(after);
/*
run:
3.1415.926.53589.79323.846.264338.3279502
8841971
*/