Skip to content

Instantly share code, notes, and snippets.

@srdjan-m
Created June 7, 2016 09:53
Show Gist options
  • Save srdjan-m/780b6ae41a6816b4ae30f55dd45102af to your computer and use it in GitHub Desktop.
Save srdjan-m/780b6ae41a6816b4ae30f55dd45102af to your computer and use it in GitHub Desktop.
javascript: convert number to string with 'px' as sufix
function toPixels(pNum) {
'use strict';
return pNum + 'px';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment