Karel Challenges #1 | Fetch | Racing Karel | CodeHS Tutorial |

preview_player
Показать описание
I'm finally back guys!
This time we're gonna be going over the last segment of Karel and the basics of JavaScript.
Thank you so much for the thousand views on previous videos I am deeply grateful for you all!
Be sure to like, comment, subscribe, and share if it helped you or you think it will help anyone else.
Stay safe, stay coding!

BG Song:
Midnight Stroll [Relaxing Study Music] by Ghostrifter Official
Creative Commons — Attribution-ShareAlike 3.0 Unported — CC BY-SA 3.0
Рекомендации по теме
Комментарии
Автор

/* This program will have Karel run around the racetrack
* 8 times. */
function start(){
for(var i = 0; i < 32; i++){
runToWall();
putCheckPoint();
turnLeft();
}


}


function runToWall(){
while(frontIsClear()){
move();
}
}

function putCheckPoint(){
if(frontIsBlocked()){
putBall();
}
}


heres my solution for karel to go 8 times around the track

torniketedeluri
Автор

You are literally the only reason I'm passing Intro to Digital Tech ilysm 😭

kaylalopez
Автор

hi I have coding classes and I'm struggling so I'm really looking forward to learning more about coding,
you are to me the best coding youtube so thx for everything

jiro.mccloud
Автор

Thank you for helping me out for school assignments!!

ambergarland
Автор

Ty friend! All your coding videos has really helped and I figured now after watching so many videos I can figure it out myself 🥳

bluebunny
Автор

bro techno can you make a video on the ESCAPE KAREL 1.16.4 assignment pls

teka
Автор

thank you!! ive been struggling on code hs so much.

vannya
Автор

what did you put for in function dash?

cameronstites