const code = "Pure JavaScript and clean code make great apps";
if (code.startsWith("Pure JavaScript") &&
code.includes("clean code")) {
console.log(`${code} is ${code.endsWith("great apps")}`);
}
"Pure JavaScript and clean code make great apps is true"