Guest User

Untitled

a guest
Jan 23rd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <input type="password" id="pswrd">
  2. <input type="button" id="btn" value="Создать объект">
  3.  
  4. <script>
  5. btn.onclick = function () {
  6. var pass = document.getElementById('pswrd').value;
  7. var Obj = {
  8. userPasswords: [],
  9. userPass: function(value) {
  10. if (value.split('').length < 8) {
  11. return 'Длина пароля должна составлять не меньше 8 символов';
  12. } else {
  13. this.userPasswords.push(value);
  14. return this;
  15. }
  16. }
  17. };
  18. console.log(Obj.userPass(pass));
  19. };
  20. </script>
Add Comment
Please, Sign In to add comment