This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# WAVE file signature | |
0 string RIFF WAVE File | | |
>4 lelong x Chunk Size: %d | |
>4 lelong+7 x {size:%d} | |
>8 string WAVE | |
>4 lelong+7 x {jump:%d} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var serializedAnswers = "A;B;A;B;B;A;A;B;B;A;"; | |
var split = serializedAnswers.split(";"); | |
var answers = []; | |
for(var i=0; i<split.length;i++){ | |
var thisans = split[i]; | |
if(thisans == ""){ | |
continue; | |
} | |
console.log(thisans); | |
answers[i] = "answer" + thisans; |