const str = 'python typescript python javascript python node.js';
const lastIndex = str.lastIndexOf("python");
const before = str.slice(0, lastIndex);
console.log(before);
const after = str.slice(lastIndex);
console.log(after);
/*
run:
python typescript python javascript
python node.js
*/