Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* function functionName
- * @param (int) nombre Précise le nombre utilisé
- * @param (string) texte Le texte utilisé
- * @return (bool) succes Retourne True en cas de succes, False encas d'échec
- * @author newSunshine
- * @date 2011-07-14
- * <p>Ici un commentaire à propos de la fonction </p>
- */
- function functionName( nombre, texte)
- {
- if(nombre > 0)
- {
- alert( texte );
- return true;
- }
- else
- {
- return false;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment