Latest news about Bitcoin and all cryptocurrencies. Your daily crypto news habit.
I am working on a game project this week where users view scrambled words every time a page is refreshed or a button is clicked. Users can also view hints to guess the word. Users can then input their answer into a form and submit that form. If correct, users are given a score that is shown on the screen which adds or subtracts points based on their answer. Today we wrote 2 functions — RandomName and Shuffle. Inside of these functions we had mistakenly applied DOM events. Later I learned from a professional player that it is best practice to separate concerns and to write functions that handle bite size problems. The function shuffle receives a string input and has to turn that string into an array with each characflter split up into individual letters. Now an array, the letters have to then be shuffled and joined back together to form a new scrambled word.
First step: feed your function some data -
const dictionary = { “Mark Hamil”: “Luke Skywalker”, “Harrison Ford”: “Han Solo”, “Carrie Fisher”: “Princess Leia”, “Anthony Daniels”: “C-3PO”, “Daisy Ridley”: “Rey”, “Liam Neeson”: “Qui-Gon Jinn”, “Natalie Portman”: “Padme Amidala”, “Alec Guinness”: “Obi-Wan Kenobi”, “Felicity Jones”: “Jyn Erso”,}
Next, write a function that will generate a random name from your data set.
const shuffle = function( randomName ) { let result = randomName.split(‘’)
for( let i = 0; i < result.length; i++ ) { const randomIndex = Math.floor( Math.random() * result.length ) const item = result[ i ]
result[ i ] = result[ randomIndex ]; result[ randomIndex ] = item } return result.join(‘’)}
What is going on here? Okay, let’s break it down. The function expression SHUFFLE takes in the data set random name. That data set is then split up into an array using the built in method .split. When you use this built in for javascript you need to make sure to feed it an empty string in order for the string to be split up into its individual letters. .split can also take in a parameter where you want to split the array. We then iterate through the array. We set a randomIndex variable that takes in the array’s length and multiplies that to get a random number based on the length of the array. We then assign the array’s value at that index in a variable called item. We then take that result at that index and then assign it to the a random index number and finally set that to item. We then join the new result array together to form the scrambled word. Whew.
//DOM EVENTS$(document).ready( function() { $(‘#random-word-1’).text( shuffle( chooseRandomActor() ) )
$( ‘#rescramble’ ).click( function( event ) { $(‘#random-word-1’).text( shuffle( chooseRandomActor() ) ) })})
Now it is time to manipulate the DOM! First we need to make sure our jQuery events fire when the DOM is ready. This is done with this line of code:
$(document).ready( function() {})
Next, select the html element that needs to show our shuffled random word. Inside this jQuery event handler, we also need to trigger the shuffle function on the word. All of this is beautifully handled by this line of code:
$(‘#random-word-1’).text( shuffle( chooseRandomActor() ) )
Finally, we need to fire this event again once the user clicks the scramble button:
$( ‘#rescramble’ ).click( function( event ) { $(‘#random-word-1’).text( shuffle( chooseRandomActor() ) ) })
Separation of Concerns — Manipulating the DOM using JQuery was originally published in Hacker Noon on Medium, where people are continuing the conversation by highlighting and responding to this story.
Disclaimer
The views and opinions expressed in this article are solely those of the authors and do not reflect the views of Bitcoin Insider. Every investment and trading move involves risk - this is especially true for cryptocurrencies given their volatility. We strongly advise our readers to conduct their own research when making a decision.