-
-
Save SvitlanaShepitsena/537c90f7ac673ba52b4c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*1. самый дешевый телефон с самой большой памятью и черного цвета*/ | |
/*2. чем отличается розовый айфон о | |
*/ | |
var phones = [ | |
{model:'iPhone', | |
price: 5500, | |
color: 'black', | |
memory: '8GB'}, | |
{model:'iPhone', | |
price: 6500, | |
color: 'black', | |
memory: '16GB'}, | |
{model:'iPhone', | |
price: 7500, | |
color: 'black', | |
memory: '32GB'}, | |
{model:'meizu', | |
price: 2500, | |
color: 'black', | |
memory: '32GB'}, | |
{model:'meizu', | |
price: 1500, | |
color: 'black', | |
memory: '16GB'}, | |
{model:'meizu', | |
price: 1500, | |
color: 'pink', | |
memory: '32GB'}, | |
{model:'iPhone', | |
price: 6500, | |
color: 'pink', | |
memory: '16GB'} | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment