HYF-Class20 / home

Home repository for HYF Class 20
MIT License
0 stars 2 forks source link

Biniam2023: Welcome-to-JS : 3- weeks #137

Open Biniam2023 opened 1 year ago

Biniam2023 commented 1 year ago

my fork of module repository

Learning Objectives

1. What is Programming

What is a program? What is a programming language? How do programs and people fit together?

Go in depth on JavaScript you need to know for writing interactive text-based programs in the browser. Along the way you will learn how each language feature works in small programs.

3. Understanding Programs

Learn how to understand a larger programs by finding connections between the details and the big picture. By the end of this chapter you will know how to read a new program and do a simple code review.

4. Developing Programs

Learn to modify and write larger programs in JavaScript. You'll cover many of the hidden skills necessary to develop quality software and to work collaboratively on a code base.

I Need Help With:

What went well?

What went less well?

Lessons Learned


Week 2

I Need Help With:

What went well?

What went less well?

Lessons Learned


Week 3

I Need Help With:

What went well?

What went less well?

Lessons Learned

bermarte commented 1 year ago

@Biniam2023 You need to complete your issue, now it's empty.

sammou00 commented 1 year ago

@Biniam2023 what is the confusion about conditions and while loop

// conditions

const isOldEnough = true;

if (isOldEnough) {
    console.log('You can drive!');
} else {
    console.log('Sorry, you are too young to drive.');
}

// While loop
let i = 0;
while (i < 10) {
    console.log(i);
    i++;
}

Thank you Samir I will keep practicing.