Transpilers are piece of code that translate code into another syntax and is backward compatible!
For example :
let a = 1;
let b = 0;
//before running transpilers
a = a ?? b; //?? means null and undefined check
//after running transpilers
a = (a !== undefined && a !== null) ? a : b;
JavaScript
