Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialKelinia Johnson
10,189 PointsNow, use the test() method to test the string in text against the regular expression you just created. Remember the test
What am I doing wrong?
// Type inside this function
function isValidHex(text) {
const hexRegEx = /^(#)[\da-f]{6}$/i
test(text) let hexRegEx = /^#[a-fA-F0-9]{6}$/;
}
const hex = document.getElementById("hex");
const body = document.getElementsByTagName("body")[0];
hex.addEventListener("input", e => {
const text = e.target.value;
const valid = isValidHex(text);
if (valid) {
body.style.backgroundColor = "rgb(176, 208, 168)";
} else {
body.style.backgroundColor = "rgb(189, 86, 86)";
}
});
<!DOCTYPE html>
<html>
<head>
<title>DOM Manipulation</title>
</head>
<link rel="stylesheet" href="style.css" />
<body>
<div id="content">
<p>Enter a valid hex value below to make the screen turn green.</p>
<input type="text" id="hex">
</div>
<script src="app.js"></script>
</body>
</html>
2 Answers
Juan Luna Ramirez
9,038 PointsNot sure about the actual regExp itself but you have to return a value from the isValidHex
function. The hexRegEx
variable is a RegExp
object which has the access to the test
function. The test
function returns a boolean so it makes sense to return that from the isValidHex
function. Something like this:
function isValidHex(text) {
const hexRegEx = /^(#)[\da-f]{6}$/i
const isValid = hexRegEx.test(text) // true or false
return isValid
}
Andrew Stevens
Full Stack JavaScript Techdegree Graduate 14,527 Pointsfunction isValidHex(text) { const hexRegEx = /^#[0-9A-Fa-f]{6}$/; return hexRegEx.test(text); } oR