For example
var contents = 'some text';
function fileSave(path){
// I'll handle saving the file, but I need the file contents
}
contents.fileSave('index.html');
So when the function is fun on the contents variable, the function has access to the variable. Like how replace() works in JavaScript.
EX.
str.replace();
but in this case
contents.fileSave();
the variable is interchangeable, the function applies to any variable is attached too.
Sorry, newbie..
fileSave(contents, path)? – zerkms Dec 1 '12 at 22:28