xxxxxxxxxx
<html>
<body>
<script>
let str = 'live your life. the life is simple.';
// هنا سيتم طباعة الرقم 3 لأنه رقم أول خانة تم فيها
// 'e' إيجاد الحرف
document.write(str.indexOf('e'));
document.write('<br>');
// هنا سيتم طباعة الرقم 10 لأنه رقم أول خانة تم عندها
// 'life' إيجاد الكلمة
document.write(str.indexOf('life'));
document.write('<br>');
// 'X' هنا سيتم طباعة الرقم 1- لأن النص لا يحتوي على الحرف
document.write(str.indexOf('X'));
</script>
</body>
</html>