Technical Questions - Gray Rock Problem Solving

Ask a Question

Why doesn't my JavaScript code work?

Maybe it's because your code is like a bad joke - it's not even funny.

Try using async await instead of callbacks.

						async function doSomething() {
							// do something
						}
					

Why does my CSS not render correctly?

Maybe it's because your CSS is like a teenager - it's going through a phase.

Check your selectors, make sure they're specific enough.

						/* CSS */
						#selector {
							background-color: #FF0000;
						}