```javascript
if (wantsToJoinNewCompany === true) {
try {
say("Actually, my previous company was pretty good. I worked hard, and the leadership valued me. " +
"I gained a lot of experience and learned a great deal of knowledge. " +
"I am truly very grateful to my previous company. " +
"However, due to certain reasons (each position in the company already has a corresponding responsible person, and there are fewer opportunities for promotion), " +
"I feel that my previous company no longer suits my development, so...");
note("In any case, don't bad-mouth your previous company; appear grateful.");
} catch (guiltyFeelingForSayingUntruthfulWords) {
swallow(guiltyFeelingForSayingUntruthfulWords);
} finally {
show("upright character, broad-mindedness, gratitude");
}
} else {
sayWhateverYouWant();
}
```
### Source:
Web Programming Readers Blog: [http://www.caojinlong.com.cn/article/10/156.html](http://www.caojinlong.com.cn/article/10/156.html)