Coding

Ramadan Coding Camp

Following a very kind request from Uyoon Institute, I have conducted a coding course for them. With this course, the participants started with the very basics of HTML and they progressed to developing a very beautiful static website. The static website was developed using Bootstrap by Twitter. This is phase 1 which taught them how …

Ramadan Coding Camp Read More »

IF – JavaScript

IF statements are ideal for when you want to control how your code flows. IF statements only evaluate either True or False and they look like this: if ( condition_to_test ) {  what to be done if the “condition” is true. } An if statement consists of the word ‘if’ in lowercase letters, followed by the …

IF – JavaScript Read More »