(t,i,x,y) => // your code

Learn Javascript logic, maths and expressions by solving puzzles in a simple visual grid.

By @JakeGMaths and inspired with permission by tixy.land. You can also try my Javascript tutorial or my infinity whiteboard.

#1

Change the code below so your pattern on the left matches the example on the right. This first puzzle uses the parameter x, the column index.

#2

This time you need y instead of x. In computer graphics, the origin (0, 0) is top-left rather than bottom-left, so y increases as you go down.

#3

Dots are indexed with i, starting from zero top-left and increasing to the bottom-right. Some challenges have hints - press '?' if stuck.

?

#4

Multiple rows, columns or consecutive dots can be turned on by creating an inequality using < or >.

?

#5

Not every challenge will have text before it, or after it when completed. You can always scroll back up to remind yourself how things work.

?

#6

?

#7

If unsure, play around and experiment and/or try thinking logically, for example about the coordinates of each white dot.

?

#8

Puzzles may require more than one equation or inequality. Link them together with && for 'and' or || for 'or'.

?

#9

?

#10

Puzzles can be solved in multiple ways. I suggest using [...].includes(i) for this one, but other ways will also work and get a tick.

?

#11

You've seen half of this cross before. You need to add an equation for the other half.

?

#12

Notice how every nth dot is blank? i%3 gives the remainder when i is divided by 3, and dots are blank when that remainder is 0 (because 0 is 'falsy').

#13

The logical 'NOT' operator ! can be used to toggle true/false to give the reverse of which dots are on. You'll also need brackets for this puzzle.

?

#14

Red?! Instead of thinking of true/false, actually each dot can be -1 for red, 0 for off and 1 (or true) for white.

?

#15

If you negate/subtract 'true', you get -1, but if you ! a truthy value, you get false.

#16
#17

?

#18

?

#19

?

#20

?

#21
#22

?

#23

?

#24

I lied. You can return any number between -1 and 1. Fractional values make the dots smaller.

?

#25

Graduated patterns can be created using simple division.

?

#26

?

#27

?

#28

All white dots here are 1 or above, and red dots -1 or below, because values are clamped between -1 and 1.

?

#29

The last puzzle had values outside -1 to 1 which still appeared as red or white. For this puzzle, you have to bring them all into that range yourself.

?

#30

?

#31

You need the first dot to be exactly -1 here, and the last one exactly 1.

?

#32

The maths function sin() returns values waving between -1 and 1 for any numeric input, perfect for our needs!

?

#33

We have 16 rows or columns, and 2π is a bit more than 6, so in the last puzzle the wave repeated ~2.5 times. Stretch a wave using division on its input.

?

#34

?

#35

Play around with different multiples and fractions of the input to sin(), and note its wavelength (distance between identical points).

#36

?

#37

Introducing our fourth and final parameter, t, the time in seconds. Time restarts when you change code or click the grids.

?

#38

If the animation seems static, click it to reset time to zero. Think about what numbers you need for red, white and blank dots and the time taken.

?

#39

Animations are more fun if they go on forever.

?

#40

We can create a basic clock using t, i and a simple mathematical operation.

?

#41

This clock is faster, and the colours are inverted.

#42

Patterns look much cooler when they're animated with t and a sin() wave!

?

#43

?

#44
#45

Sometimes we don't want fractional values. You can round() values to the nearest integers.

#46

Sometimes we don't want fractional values. You can round() values to the nearest integers.

#47

Sometimes we don't want fractional values. You can round() values to the nearest integers.

#48

That's the end of the tutorial. From here on, there's a selection of cool animations on a 32x32 grid. Hit '?' to see the code for each one.

?

#49

Copy+paste code from the hints then tweak away.

?

#50

Can you change the speed of this one? Or invert the colours?

?

#51

Can you speed it up? Or slow it down?

?

#52

How can you change where the centre of the ripple is? Or speed it up?

?

#53

?

#54

?

#55

?

#56

?

#57

Experiment and create cool stuff! Let me know any feedback @JakeGMaths and be sure to share with others!

Try out more patterns at the original tixy.land.

By @JakeGMaths. You can also try my Javascript tutorial or my infinity whiteboard.

0