Your Submissions
You haven't submitted any code for this challenge yet. Solve the problem by passing all the test cases, and your submissions will appear here.
xxxxxxxxxx43
var assert = require('assert');function isPalindrome(str) {}function isAlphaNumeric(c) {}console.log(isPalindrome('A Santa Lived As a Devil At NASA'));try { assert.equal(isPalindrome('A Santa Lived As a Devil At NASA'), true); console.log( 'PASSED: ' + "assert.equal(isPalindrome('A Santa Lived As a Devil At NASA'),true)" );} catch (err) { console.log(err);}try { assert.equal(isPalindrome('gold'), false); console.log('PASSED: ' + "assert.equal(isPalindrome('gold'),false)");} catch (err) { console.log(err);}OUTPUT
Results will appear here.