Discuss Scratch
- Discussion Forums
- » Show and Tell
- » scratch to javascript converter
- Tymewalk
-
1000+ posts
scratch to javascript converter
Cool! I have a few suggestions, since JS is one of the things I'm messing around with:
For forever, you can use this:
Repeat until could be this:
Greater than ( > ) and equals ( = ) are done in the same way as less than is.
Think could just be another console.log()
I hope this helps!
For forever, you can use this:
while (1) {
// code here
}
Repeat until could be this:
while (not <conditional>) {
// code
}
Greater than ( > ) and equals ( = ) are done in the same way as less than is.
Think could just be another console.log()
I hope this helps!
- gwgw99
-
41 posts
scratch to javascript converter
Thanks! I always like suggestions! Cool! I have a few suggestions, since JS is one of the things I'm messing around with:
For forever, you can use this:while (1) {
// code here
}
Repeat until could be this:while (not <conditional>) {
// code
}
Greater than ( > ) and equals ( = ) are done in the same way as less than is.
Think could just be another console.log()
I hope this helps!
- Discussion Forums
- » Show and Tell
-
» scratch to javascript converter