I work in PHP, and it reminds me of <<< syntax (heredoc and nowdoc), so let’s name it heredoc.
Function.prototype.heredoc = function(){
//Use function comments to store strings without escaping.
var _str = this.toString(),
s_pos = _str.indexOf("/*") 2,
e_pos = _str.lastIndexOf("*/");
return (s_pos< 0 || e_pos<0) ? "" : _str.substring(s_pos, e_pos);
}
function fn(){
/*
Username |
Password |
@name |
zf123456 |
*/
}
var str_table = fn.heredoc();
console.log(str_table);
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn