Skip to content

Instantly share code, notes, and snippets.

View nsieber's full-sized avatar

Nik nsieber

View GitHub Profile
anonymous
anonymous / palindrom_dm.js
Created May 31, 2016 13:55
'use strict'; // avoid ambiguity and sloppy errors
/**
* Tests whether or not a given string is a Palindrome
* @param {string} stringToTest - the string to test.
*/
function isPalindrome(stringToTest) {
var start = 0,
end;